vim-easymotion/autoload/vital/_easymotion/Over/Commandline.vim

436 lines
8.5 KiB
VimL
Raw Normal View History

2014-01-29 00:29:23 -05:00
scriptencoding utf-8
let s:save_cpo = &cpo
set cpo&vim
let s:modules = [
\ "Scroll",
\ "CursorMove",
\ "Delete",
\ "HistAdd",
\ "History",
\ "Cancel",
\ "Enter",
\ "NoInsert",
2014-02-04 23:32:29 -05:00
\ "InsertRegister",
2014-01-29 00:29:23 -05:00
\]
function! s:_vital_loaded(V)
let s:V = a:V
for module in s:modules
let s:{module} = s:V.import('Over.Commandline.Modules.' . module)
endfor
2014-02-04 23:32:29 -05:00
let s:String = s:V.import("Over.String")
2014-01-29 00:29:23 -05:00
endfunction
function! s:_vital_depends()
2014-02-04 23:32:29 -05:00
return ["Over.String"]
\ + map(copy(s:modules), "'Over.Commandline.Modules.' . v:val")
endfunction
function! s:get_module(name)
if exists("s:" . a:name)
return s:{a:name}
endif
let s:{a:name} = s:V.import('Over.Commandline.Modules.' . a:name)
return s:{a:name}
2014-01-29 00:29:23 -05:00
endfunction
function! s:make_plain(prompt)
2014-02-04 23:32:29 -05:00
let result = s:make(a:prompt)
let result.prompt = a:prompt
2014-02-04 23:32:29 -05:00
call result.connect("Enter")
call result.connect("Cancel")
return result
endfunction
2014-02-04 23:32:29 -05:00
function! s:make_standard(prompt)
let result = s:make_plain(a:prompt)
2014-02-04 23:32:29 -05:00
call result.connect("Delete")
call result.connect("CursorMove")
call result.connect("HistAdd")
call result.connect("History")
call result.connect("InsertRegister")
call result.connect(s:get_module("NoInsert").make_special_chars())
return result
endfunction
function! s:make(prompt)
2014-02-04 23:32:29 -05:00
return deepcopy(s:base)
endfunction
2014-01-29 00:29:23 -05:00
let s:base = {
2014-02-04 23:32:29 -05:00
\ "prompt" : "",
2014-01-29 00:29:23 -05:00
\ "line" : {},
\ "variables" : {
\ "char" : "",
\ "input" : "",
2014-02-04 23:32:29 -05:00
\ "tap_key" : "",
\ "exit" : 0,
2014-02-04 23:32:29 -05:00
\ "keymapping" : {},
\ "modules" : {},
2014-01-29 00:29:23 -05:00
\ },
\ "highlights" : {
\ "prompt" : "NONE",
\ "cursor" : "OverCommandLineDefaultCursor",
\ "cursor_insert" : "OverCommandLineDefaultCursorInsert"
2014-01-29 00:29:23 -05:00
\ },
\}
function! s:base.getline()
return self.line.str()
endfunction
function! s:base.setline(line)
return self.line.set(a:line)
endfunction
function! s:base.char()
return self.variables.char
endfunction
function! s:base.setchar(char)
let self.variables.input = a:char
endfunction
function! s:base.getpos()
return self.line.pos()
endfunction
function! s:base.setpos(pos)
2014-02-04 23:32:29 -05:00
return self.line.set_pos(a:pos)
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:base.tap_keyinput(key)
let self.variables.tap_key = a:key
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:base.untap_keyinput(key)
if self.variables.tap_key == a:key
let self.variables.tap_key = ""
2014-01-29 00:29:23 -05:00
return 1
endif
endfunction
2014-02-04 23:32:29 -05:00
function! s:base.get_tap_key()
return self.variables.tap_key
2014-01-29 00:29:23 -05:00
endfunction
function! s:base.is_input(key, ...)
let prekey = get(a:, 1, "")
2014-02-04 23:32:29 -05:00
return self.get_tap_key() == prekey
\ && self.char() == a:key
2014-02-06 09:04:12 -05:00
" \ && self.char() == (prekey . a:key)
2014-02-06 05:08:14 -05:00
endfunction
function! s:base.input_key()
return self.variables.input_key
2014-01-29 00:29:23 -05:00
endfunction
function! s:base.insert(word, ...)
if a:0
call self.line.set(a:1)
endif
call self.line.input(a:word)
endfunction
function! s:base.forward()
return self.line.forward()
endfunction
function! s:base.backward()
return self.line.backward()
endfunction
function! s:base.connect(module, ...)
2014-02-04 23:32:29 -05:00
if type(a:module) == type("")
return self.connect(s:get_module(a:module).make())
endif
let name = get(a:, 1, a:module.name)
2014-02-04 23:32:29 -05:00
let self.variables.modules[name] = a:module
2014-01-29 00:29:23 -05:00
endfunction
function! s:base.disconnect(name)
2014-02-04 23:32:29 -05:00
unlet self.variables.modules[a:name] = a:module
endfunction
for s:_ in ["enter", "leave", "char", "char_pre", "execute_pre", "execute_failed", "execute", "cancel"]
2014-01-29 00:29:23 -05:00
execute join([
\ "function! s:base._on_" . s:_ . "()",
2014-02-04 23:32:29 -05:00
\ " call map(copy(self.variables.modules), 'has_key(v:val, \"on_" . s:_ . "\") ? v:val.on_" . s:_ . "(self) : 0')",
2014-01-29 00:29:23 -05:00
\ " call self.on_" . s:_ . "()",
\ "endfunction",
\ ], "\n")
execute "function! s:base.on_" . s:_ . "()"
endfunction
endfor
unlet s:_
2014-02-04 23:32:29 -05:00
function! s:base.cmap(lhs, rhs)
let self.variables.keymapping[a:lhs] = a:rhs
endfunction
function! s:base.cnoremap(lhs, rhs)
let self.variables.keymapping[a:lhs] = {
\ "key" : a:rhs,
\ "noremap" : 1,
\ }
endfunction
function! s:base.cunmap(lhs)
unlet self.variables.keymapping[a:lhs]
endfunction
function! s:base.keymapping()
2014-01-29 00:29:23 -05:00
return {}
endfunction
function! s:base.execute()
execute self.getline()
endfunction
function! s:base.exit(...)
let self.variables.exit = 1
let self.variables.exit_code = get(a:, 1, 0)
2014-01-29 00:29:23 -05:00
endfunction
2014-02-06 05:08:14 -05:00
" function! s:base.cancel()
" call self.exit(1)
" call self._on_cancel()
" endfunction
function! s:base.exit_code()
return self.variables.exit_code
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:base.hl_cursor_on()
if exists("self.variables.old_hi_cursor")
execute "highlight Cursor " . self.variables.old_hi_cursor
unlet self.variables.old_hi_cursor
endif
if exists("self.variables.old_t_ve")
let &t_ve = self.variables.old_t_ve
unlet self.variables.old_t_ve
endif
endfunction
function! s:base.hl_cursor_off()
if exists("self.variables.old_hi_cursor")
return self.variables.old_hi_cursor
endif
let self.variables.old_hi_cursor = "cterm=reverse"
if hlexists("Cursor")
let save_verbose = &verbose
let &verbose = 0
try
redir => cursor
silent highlight Cursor
redir END
finally
let &verbose = save_verbose
endtry
let hl = substitute(matchstr(cursor, 'xxx \zs.*'), '[ \t\n]\+\|cleared', ' ', 'g')
if !empty(substitute(hl, '\s', '', 'g'))
let self.variables.old_hi_cursor = hl
endif
highlight Cursor NONE
endif
let self.variables.old_t_ve = &t_ve
set t_ve=
return self.variables.old_hi_cursor
endfunction
2014-01-29 00:29:23 -05:00
function! s:base.start(...)
let exit_code = call(self._main, a:000, self)
if exit_code == 0
call self._execute()
2014-01-29 00:29:23 -05:00
endif
endfunction
function! s:base.get(...)
let exit_code = call(self._main, a:000, self)
if exit_code == 0
return self.getline()
endif
2014-01-29 00:29:23 -05:00
return ""
endfunction
function! s:base._init()
2014-02-04 23:32:29 -05:00
let self.variables.tap_key = ""
2014-01-29 00:29:23 -05:00
let self.variables.char = ""
let self.variables.input = ""
let self.variables.exit = 0
let self.variables.exit_code = 1
2014-02-04 23:32:29 -05:00
let hl_cursor = self.hl_cursor_off()
2014-01-29 00:29:23 -05:00
if !hlexists("OverCommandLineDefaultCursor")
execute "highlight OverCommandLineDefaultCursor " . hl_cursor
endif
if !hlexists("OverCommandLineDefaultCursorInsert")
execute "highlight OverCommandLineDefaultCursorInsert " . hl_cursor . " term=underline gui=underline"
endif
endfunction
function! s:base._execute()
2014-02-04 23:32:29 -05:00
call s:redraw()
call self._on_execute_pre()
2014-01-29 00:29:23 -05:00
try
call self.execute()
catch
echohl ErrorMsg
echo matchstr(v:exception, 'Vim\((\w*)\)\?:\zs.*\ze')
echohl None
call self._on_execute_failed()
2014-01-29 00:29:23 -05:00
finally
call self._on_execute()
endtry
endfunction
function! s:base._main(...)
try
call self._init()
2014-02-04 23:32:29 -05:00
let self.line = deepcopy(s:String.make(get(a:, 1, "")))
call self._on_enter()
while !self._is_exit()
call s:_echo_cmdline(self)
2014-02-06 05:08:14 -05:00
let self.variables.input_key = s:_getchar()
let self.variables.char = s:_unmap(self._get_keymapping(), self.variables.input_key)
2014-02-06 09:04:12 -05:00
" let self.variables.char = s:_unmap(self._get_keymapping(), self.get_tap_key() . self.variables.input_key)
2014-02-04 23:32:29 -05:00
call self.setchar(self.variables.char)
call self._on_char_pre()
call self.insert(self.variables.input)
call self._on_char()
endwhile
catch
echohl ErrorMsg | echo v:throwpoint . " " . v:exception | echohl None
2014-02-04 23:32:29 -05:00
return -1
finally
call self._finish()
call self._on_leave()
endtry
2014-02-04 23:32:29 -05:00
call s:redraw()
return self.exit_code()
endfunction
2014-01-29 00:29:23 -05:00
function! s:base._finish()
2014-02-04 23:32:29 -05:00
call self.hl_cursor_on()
2014-01-29 00:29:23 -05:00
endfunction
function! s:_echo_cmdline(cmdline)
2014-02-04 23:32:29 -05:00
call s:redraw()
execute "echohl" a:cmdline.highlights.prompt
echon a:cmdline.prompt
echohl NONE
echon a:cmdline.backward()
if empty(a:cmdline.line.pos_word())
execute "echohl" a:cmdline.highlights.cursor
echon ' '
else
execute "echohl" a:cmdline.highlights.cursor_insert
echon a:cmdline.line.pos_word()
endif
echohl NONE
echon a:cmdline.forward()
endfunction
function! s:base._is_exit()
return self.variables.exit
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:_as_key_config(config)
let base = {
\ "noremap" : 0,
\ "lock" : 0,
\ }
return type(a:config) == type({}) ? extend(base, a:config)
\ : extend(base, {
\ "key" : a:config,
\ })
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:_unmap(mapping, key)
if !has_key(a:mapping, a:key)
return a:key
endif
let rhs = s:_as_key_config(a:mapping[a:key])
let next = s:_as_key_config(get(a:mapping, rhs.key, {}))
if rhs.noremap && next.lock == 0
return rhs.key
2014-01-29 00:29:23 -05:00
endif
2014-02-04 23:32:29 -05:00
return s:_unmap(a:mapping, rhs.key)
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:base._get_keymapping()
let result = {}
for module in values(self.variables.modules)
if has_key(module, "keymapping")
call extend(result, module.keymapping(self))
2014-01-29 00:29:23 -05:00
endif
2014-02-04 23:32:29 -05:00
endfor
return extend(extend(result, self.variables.keymapping), self.keymapping())
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:redraw()
redraw
echo ""
2014-01-29 00:29:23 -05:00
endfunction
2014-02-04 23:32:29 -05:00
function! s:_getchar()
let char = getchar()
return type(char) == type(0) ? nr2char(char) : char
2014-01-29 00:29:23 -05:00
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo