Heim > Fragen und Antworten > Hauptteil
nnoremap <leader>c :Ack '^class ' <c-r>=&path<cr><home><right><right><right><right><right><right><right><right><right><right><right><right>
Die allgemeine Idee besteht darin, Ack zu verwenden, um unter &path path.
nach einem Muster zu suchenDas n*<right>
in diesem Mapping ist so hässlich, wie kann es optimiert werden?
Mit Hilfe der Community stelle ich die endgültige Methode unten dar:
" help input
function! AckClass()
let l:classPattern = input('Pattern: ')
execute " Ack '^class " . l:classPattern . "' " . &path
endfunction
command! AckClass call AckClass()
PHPz2017-05-16 16:40:35
不知道你要交互到什么程度
function! ChangeFileencoding()
let encodings = ['GB18030', 'GBK', 'cp936', 'utf-8', 'big5', "latin1", "euc-kr", "euc-jp", "ucs-bom", "shift-jis"]
let prompt_encs = []
let index = 0
while index < len(encodings)
call add(prompt_encs, index.'. '.encodings[index])
let index = index + 1
endwhile
let choice = inputlist(prompt_encs)
if choice >= 0 && choice < len(encodings)
execute 'e ++enc='.encodings[choice].' %:p'
endif
endf
这是我的vimrc的换编码打开文件的函数,会展现一个选项列表,供你参考