listing.d.elv 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #elvdoc:fn listing:accept
  2. #
  3. # ```elvish
  4. # edit:listing:accept
  5. # ```
  6. #
  7. # Accepts the current selected listing item.
  8. #elvdoc:fn listing:up
  9. #
  10. # ```elvish
  11. # edit:listing:up
  12. # ```
  13. #
  14. # Moves the cursor up in listing mode.
  15. #elvdoc:fn listing:down
  16. #
  17. # ```elvish
  18. # edit:listing:down
  19. # ```
  20. #
  21. # Moves the cursor down in listing mode.
  22. #elvdoc:fn listing:up-cycle
  23. #
  24. # ```elvish
  25. # edit:listing:up-cycle
  26. # ```
  27. #
  28. # Moves the cursor up in listing mode, or to the last item if the first item is
  29. # currently selected.
  30. #elvdoc:fn listing:down-cycle
  31. #
  32. # ```elvish
  33. # edit:listing:down-cycle
  34. # ```
  35. #
  36. # Moves the cursor down in listing mode, or to the first item if the last item is
  37. # currently selected.
  38. #elvdoc:fn listing:page-up
  39. #
  40. # ```elvish
  41. # edit:listing:page-up
  42. # ```
  43. #
  44. # Moves the cursor up one page.
  45. #elvdoc:fn listing:page-down
  46. #
  47. # ```elvish
  48. # edit:listing:page-down
  49. # ```
  50. #
  51. # Moves the cursor down one page.
  52. #elvdoc:fn listing:left
  53. #
  54. # ```elvish
  55. # edit:listing:left
  56. # ```
  57. #
  58. # Moves the cursor left in listing mode.
  59. #elvdoc:fn listing:right
  60. #
  61. # ```elvish
  62. # edit:listing:right
  63. # ```
  64. #
  65. # Moves the cursor right in listing mode.
  66. #elvdoc:var location:hidden
  67. #
  68. # ```elvish
  69. # edit:location:hidden
  70. # ```
  71. #
  72. # A list of directories to hide in the location addon.
  73. #elvdoc:var location:pinned
  74. #
  75. # ```elvish
  76. # edit:location:pinned
  77. # ```
  78. #
  79. # A list of directories to always show at the top of the list of the location
  80. # addon.
  81. #elvdoc:var location:workspaces
  82. #
  83. # ```elvish
  84. # edit:location:workspaces
  85. # ```
  86. #
  87. # A map mapping types of workspaces to their patterns.