33

Одна вещь, которую мне не хватает в оболочке Linux - это сочетание клавиш Alt+Dot . Что он делает, это вставляет последний аргумент предыдущей команды. Это кажется тривиальной техникой, но она действительно полезна.

т.е. если вы наберете это:

$ ls /Applications/MAMP/conf/apache/

В следующий раз вам просто нужно набрать команду + ярлык, и аргумент будет завершен за вас.

$ cd 'alt+dot'

На Mac я знаю 2 альтернативы; нажимая Esc+Dot или печатая !$ ,!* с настройкой волшебного пространства.

Однако, хотя обе альтернативы вставляют последний использованный вами аргумент (аргументы), они не могут прокручивать историю команд назад, как это происходит при многократном вводе Alt+Dot .

Я могу жить с этими вариантами пока, но я хотел бы знать, знает ли кто-то лучший способ сделать это.

4 ответа4

32

В Terminal.app, Настройки-> Настройки, выберите вкладку Клавиатура. Убедитесь, что "Использовать ключ опции как мета" установлен.

19

Вы можете нажать клавишу Esc-dot много раз, она выполняет те же действия, что и alt-dot. Но, как и вы, я считаю, что печатать печатать более громоздко, чем alt-dot.

5

Используйте опцию+.

Обратите внимание, что это особенность bash, а не linux. На Mac тоже есть удар. Alt-. является ярлыком для встроенной функции bash insert-last-argument . Прочтите раздел READLINE на странице руководства bash, чтобы узнать, как можно связать это с другой комбинацией клавиш.


Вставить несколько соответствующих частей:

   Readline Initialization
       Readline  is customized by putting commands in an initialization file (the
       inputrc file).
       The  default key-bindings may be changed with an inputrc file.  Other pro-
       grams that use this library may add their own commands and bindings.

       For example, placing

              M-Control-u: universal-argument
       or
              C-Meta-u: universal-argument
       into the inputrc would make M-C-u execute  the  readline  command  univer-
       sal-argument.

   Readline Key Bindings
       The  syntax  for  controlling  key bindings in the inputrc file is simple.
       All that is required is the name of the command or the text of a macro and
       a  key  sequence to which it should be bound. The name may be specified in
       one of two ways: as a symbolic key name, possibly with Meta-  or  Control-
       prefixes, or as a key sequence.

       When using the form keyname:function-name or macro, keyname is the name of
       a key spelled out in English.  For example:

              Control-u: universal-argument
              Meta-Rubout: backward-kill-word
              Control-o: "> output"

       In the above example, C-u is bound  to  the  function  universal-argument,
       M-DEL is bound to the function backward-kill-word, and C-o is bound to run
       the macro expressed on the right hand side (that is, to  insert  the  text
       ``> output'' into the line).

       In  the  second form, "keyseq":function-name or macro, keyseq differs from
       keyname above in that strings denoting an entire key sequence may be spec-
       ified  by placing the sequence within double quotes.  Some GNU Emacs style
       key escapes can be used, as in the following  example,  but  the  symbolic
       character names are not recognized.

              "\C-u": universal-argument
              "\C-x\C-r": re-read-init-file
              "\e[11~": "Function Key 1"


   Commands for Manipulating the History
       insert-last-argument (M-., M-_)
              A synonym for yank-last-arg.
2

Если вы откроете Terminal.app и введете настройки, перейдите в «Настройки»> «Клавиатура» и отметите «Использовать параметр в качестве мета-ключа», вы можете использовать сочетания клавиш bash, которые используют alt, например:

Alt+B: пропустить слово назад

Alt+F: пропустить слово вперед

Источник

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .