navigation.d.elv 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #elvdoc:var navigation:selected-file
  2. #
  3. # Name of the currently selected file in navigation mode. $nil if not in
  4. # navigation mode.
  5. #elvdoc:var navigation:binding
  6. #
  7. # ```elvish
  8. # edit:navigation:binding
  9. # ```
  10. #
  11. # Keybinding for the navigation mode.
  12. #elvdoc:fn navigation:start
  13. #
  14. # ```elvish
  15. # edit:navigation:start
  16. # ```
  17. #
  18. # Start the navigation mode.
  19. #elvdoc:fn navigation:insert-selected
  20. #
  21. # ```elvish
  22. # edit:navigation:insert-selected
  23. # ```
  24. #
  25. # Inserts the selected filename.
  26. #elvdoc:fn navigation:insert-selected-and-quit
  27. #
  28. # ```elvish
  29. # edit:navigation:insert-selected-and-quit
  30. # ```
  31. #
  32. # Inserts the selected filename and closes the navigation addon.
  33. #elvdoc:fn navigation:trigger-filter
  34. #
  35. # ```elvish
  36. # edit:navigation:trigger-filter
  37. # ```
  38. #
  39. # Toggles the filtering status of the navigation addon.
  40. #elvdoc:fn navigation:trigger-shown-hidden
  41. #
  42. # ```elvish
  43. # edit:navigation:trigger-shown-hidden
  44. # ```
  45. #
  46. # Toggles whether the navigation addon should be showing hidden files.
  47. #elvdoc:var navigation:width-ratio
  48. #
  49. # A list of 3 integers, used for specifying the width ratio of the 3 columns in
  50. # navigation mode.