Run vim
vim
Redirect ex commands to the buffer a:
:redir @a
Print all of auto commands:
:au
Switch of redirecting:
:redir END
Paste the buffer a to text
"ap
Search for all occurrences of the setf xml
.
Как я могу найти все расширения файлов, которые будут использовать определенный тип файла (выделение)?
Например, я знаю, что оба файла ".xml" и ".xmi" будут открываться как тип файла "xml", однако я хотел бы найти что-то еще.
Run vim
vim
Redirect ex commands to the buffer a:
:redir @a
Print all of auto commands:
:au
Switch of redirecting:
:redir END
Paste the buffer a to text
"ap
Search for all occurrences of the setf xml
.