Expand is now <tab>, forward is <c-j> and backwards is <c-k>
This commit is contained in:
parent
82dffc5e1c
commit
ccfa5d7a73
@ -32,8 +32,14 @@ endfunction
|
|||||||
|
|
||||||
function! PyVimSnips_JumpBackwards()
|
function! PyVimSnips_JumpBackwards()
|
||||||
py << EOF
|
py << EOF
|
||||||
from PySnipEmu import PySnipSnippets
|
PySnipSnippets.jump(True)
|
||||||
PySnipSnippets.try_expand(True)
|
EOF
|
||||||
|
return ""
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! PyVimSnips_JumpForwards()
|
||||||
|
py << EOF
|
||||||
|
PySnipSnippets.jump()
|
||||||
EOF
|
EOF
|
||||||
return ""
|
return ""
|
||||||
endfunction
|
endfunction
|
||||||
@ -58,8 +64,10 @@ EOF
|
|||||||
" You can remap these
|
" You can remap these
|
||||||
inoremap <Tab> <C-R>=PyVimSnips_ExpandSnippet()<cr>
|
inoremap <Tab> <C-R>=PyVimSnips_ExpandSnippet()<cr>
|
||||||
snoremap <Tab> <Esc>:call PyVimSnips_ExpandSnippet()<cr>
|
snoremap <Tab> <Esc>:call PyVimSnips_ExpandSnippet()<cr>
|
||||||
inoremap <S-Tab> <C-R>=PyVimSnips_JumpBackwards()<cr>
|
inoremap <C-k> <C-R>=PyVimSnips_JumpBackwards()<cr>
|
||||||
snoremap <S-Tab> <Esc>:call PyVimSnips_JumpBackwards()<cr>
|
snoremap <C-k> <Esc>:call PyVimSnips_JumpBackwards()<cr>
|
||||||
|
inoremap <C-j> <C-R>=PyVimSnips_JumpForwards()<cr>
|
||||||
|
snoremap <C-j> <Esc>:call PyVimSnips_JumpForwards()<cr>
|
||||||
|
|
||||||
" Do not remap this.
|
" Do not remap this.
|
||||||
snoremap <BS> <Esc>:py PySnipSnippets.backspace_while_selected()<cr>
|
snoremap <BS> <Esc>:py PySnipSnippets.backspace_while_selected()<cr>
|
||||||
|
@ -181,9 +181,6 @@ class TextObject(object):
|
|||||||
|
|
||||||
return new_end
|
return new_end
|
||||||
|
|
||||||
def add_tabstop(self,no, ts):
|
|
||||||
self._tabstops[no] = ts
|
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# Private/Protected functions #
|
# Private/Protected functions #
|
||||||
###############################
|
###############################
|
||||||
@ -223,6 +220,10 @@ class TextObject(object):
|
|||||||
self._children.append(c)
|
self._children.append(c)
|
||||||
self._children.sort()
|
self._children.sort()
|
||||||
|
|
||||||
|
def _add_tabstop(self, no, ts):
|
||||||
|
self._tabstops[no] = ts
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Parsing below
|
# Parsing below
|
||||||
def _get_start_end(self, val, start_pos, end_pos):
|
def _get_start_end(self, val, start_pos, end_pos):
|
||||||
@ -256,7 +257,7 @@ class TextObject(object):
|
|||||||
|
|
||||||
ts = TabStop(self, start, end, def_text)
|
ts = TabStop(self, start, end, def_text)
|
||||||
|
|
||||||
self.add_tabstop(int(m.group(1)),ts)
|
self._add_tabstop(int(m.group(1)),ts)
|
||||||
|
|
||||||
return val[:start_pos] + (end_pos-start_pos)*" " + val[end_pos:]
|
return val[:start_pos] + (end_pos-start_pos)*" " + val[end_pos:]
|
||||||
|
|
||||||
@ -272,7 +273,7 @@ class TextObject(object):
|
|||||||
Mirror(self, ts, start, end)
|
Mirror(self, ts, start, end)
|
||||||
else:
|
else:
|
||||||
ts = TabStop(self, start, end)
|
ts = TabStop(self, start, end)
|
||||||
self.add_tabstop(no,ts)
|
self._add_tabstop(no,ts)
|
||||||
|
|
||||||
def _handle_transformation(self, m, val):
|
def _handle_transformation(self, m, val):
|
||||||
no = int(m.group(1))
|
no = int(m.group(1))
|
||||||
@ -405,7 +406,7 @@ class SnippetInstance(TextObject):
|
|||||||
start = Position(delta.line, col)
|
start = Position(delta.line, col)
|
||||||
end = Position(delta.line, col)
|
end = Position(delta.line, col)
|
||||||
ts = TabStop(self, start, end, "")
|
ts = TabStop(self, start, end, "")
|
||||||
self.add_tabstop(0,ts)
|
self._add_tabstop(0,ts)
|
||||||
|
|
||||||
TextObject.update(self)
|
TextObject.update(self)
|
||||||
|
|
||||||
|
@ -29,7 +29,6 @@ class Snippet(object):
|
|||||||
return self._t
|
return self._t
|
||||||
trigger = property(trigger)
|
trigger = property(trigger)
|
||||||
|
|
||||||
|
|
||||||
def launch(self, text_before, start):
|
def launch(self, text_before, start):
|
||||||
indent = self._INDENT.match(text_before).group(0)
|
indent = self._INDENT.match(text_before).group(0)
|
||||||
v = self._v
|
v = self._v
|
||||||
@ -148,43 +147,6 @@ class SnippetManager(object):
|
|||||||
|
|
||||||
self._expect_move_wo_change = False
|
self._expect_move_wo_change = False
|
||||||
|
|
||||||
def _load_snippets_from(self, ft, fn):
|
|
||||||
cs = None
|
|
||||||
cv = ""
|
|
||||||
cdescr = ""
|
|
||||||
for line in open(fn):
|
|
||||||
if line.startswith("#"):
|
|
||||||
continue
|
|
||||||
if line.startswith("snippet"):
|
|
||||||
cs = line.split()[1]
|
|
||||||
left = line.find('"')
|
|
||||||
if left != -1:
|
|
||||||
right = line.rfind('"')
|
|
||||||
cdescr = line[left+1:right]
|
|
||||||
continue
|
|
||||||
if cs != None:
|
|
||||||
if line.startswith("endsnippet"):
|
|
||||||
cv = cv[:-1] # Chop the last newline
|
|
||||||
l = self._snippets[ft].get(cs,[])
|
|
||||||
l.append(Snippet(cs,cv,cdescr))
|
|
||||||
self._snippets[ft][cs] = l
|
|
||||||
cv = ""
|
|
||||||
cdescr = ""
|
|
||||||
cs = None
|
|
||||||
continue
|
|
||||||
else:
|
|
||||||
cv += line
|
|
||||||
|
|
||||||
|
|
||||||
def _load_snippets_for(self, ft):
|
|
||||||
self._snippets[ft] = {}
|
|
||||||
for p in vim.eval("&runtimepath").split(',')[::-1]:
|
|
||||||
pattern = p + os.path.sep + "PySnippets" + os.path.sep + \
|
|
||||||
"*%s.snippets" % ft
|
|
||||||
|
|
||||||
for fn in glob.glob(pattern):
|
|
||||||
self._load_snippets_from(ft, fn)
|
|
||||||
|
|
||||||
|
|
||||||
def reset(self):
|
def reset(self):
|
||||||
self._snippets = {}
|
self._snippets = {}
|
||||||
@ -199,23 +161,7 @@ class SnippetManager(object):
|
|||||||
l.append(Snippet(trigger,value, descr))
|
l.append(Snippet(trigger,value, descr))
|
||||||
self._snippets["all"][trigger] = l
|
self._snippets["all"][trigger] = l
|
||||||
|
|
||||||
def _find_snippets(self, ft, trigger):
|
def jump(self, backwards = False):
|
||||||
snips = self._snippets.get(ft,None)
|
|
||||||
if not snips:
|
|
||||||
return []
|
|
||||||
|
|
||||||
return snips.get(trigger, [])
|
|
||||||
|
|
||||||
def try_expand(self, backwards = False):
|
|
||||||
ft = vim.eval("&filetype")
|
|
||||||
if len(ft) and ft not in self._snippets:
|
|
||||||
self._load_snippets_for(ft)
|
|
||||||
if "all" not in self._snippets:
|
|
||||||
self._load_snippets_for("all")
|
|
||||||
|
|
||||||
self._ctab = None
|
|
||||||
self._expect_move_wo_change = False
|
|
||||||
|
|
||||||
if self._csnippet:
|
if self._csnippet:
|
||||||
self._expect_move_wo_change = True
|
self._expect_move_wo_change = True
|
||||||
self._ctab = self._csnippet.select_next_tab(backwards)
|
self._ctab = self._csnippet.select_next_tab(backwards)
|
||||||
@ -228,6 +174,17 @@ class SnippetManager(object):
|
|||||||
|
|
||||||
self._vstate.update()
|
self._vstate.update()
|
||||||
return True
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def try_expand(self, backwards = False):
|
||||||
|
ft = vim.eval("&filetype")
|
||||||
|
if len(ft) and ft not in self._snippets:
|
||||||
|
self._load_snippets_for(ft)
|
||||||
|
if "all" not in self._snippets:
|
||||||
|
self._load_snippets_for("all")
|
||||||
|
|
||||||
|
self._ctab = None
|
||||||
|
self._expect_move_wo_change = False
|
||||||
|
|
||||||
lineno,col = vim.current.window.cursor
|
lineno,col = vim.current.window.cursor
|
||||||
if col == 0:
|
if col == 0:
|
||||||
@ -285,6 +242,17 @@ class SnippetManager(object):
|
|||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def backspace_while_selected(self):
|
||||||
|
# BS was called in select mode
|
||||||
|
|
||||||
|
if self._csnippet and self._tab_selected:
|
||||||
|
# This only happens when a default value is delted using backspace
|
||||||
|
old_span = self._csnippet.abs_span
|
||||||
|
vim.command(r'call feedkeys("i")')
|
||||||
|
self._chars_entered('')
|
||||||
|
else:
|
||||||
|
vim.command(r'call feedkeys("\<BS>")')
|
||||||
|
|
||||||
def cursor_moved(self):
|
def cursor_moved(self):
|
||||||
self._vstate.update()
|
self._vstate.update()
|
||||||
|
|
||||||
@ -321,6 +289,10 @@ class SnippetManager(object):
|
|||||||
if self._csnippet and self._vstate.has_moved:
|
if self._csnippet and self._vstate.has_moved:
|
||||||
self.reset()
|
self.reset()
|
||||||
|
|
||||||
|
###################################
|
||||||
|
# Private/Protect Functions Below #
|
||||||
|
###################################
|
||||||
|
# Input Handling
|
||||||
def _chars_entered(self, chars):
|
def _chars_entered(self, chars):
|
||||||
if self._tab_selected:
|
if self._tab_selected:
|
||||||
self._ctab.current_text = chars
|
self._ctab.current_text = chars
|
||||||
@ -349,18 +321,52 @@ class SnippetManager(object):
|
|||||||
|
|
||||||
self._vstate.update()
|
self._vstate.update()
|
||||||
|
|
||||||
def backspace_while_selected(self):
|
# Loading
|
||||||
# BS was called in select mode
|
def _load_snippets_from(self, ft, fn):
|
||||||
|
cs = None
|
||||||
if self._csnippet and self._tab_selected:
|
cv = ""
|
||||||
# This only happens when a default value is delted using backspace
|
cdescr = ""
|
||||||
old_span = self._csnippet.abs_span
|
for line in open(fn):
|
||||||
vim.command(r'call feedkeys("i")')
|
if line.startswith("#"):
|
||||||
self._chars_entered('')
|
continue
|
||||||
|
if line.startswith("snippet"):
|
||||||
|
cs = line.split()[1]
|
||||||
|
left = line.find('"')
|
||||||
|
if left != -1:
|
||||||
|
right = line.rfind('"')
|
||||||
|
cdescr = line[left+1:right]
|
||||||
|
continue
|
||||||
|
if cs != None:
|
||||||
|
if line.startswith("endsnippet"):
|
||||||
|
cv = cv[:-1] # Chop the last newline
|
||||||
|
l = self._snippets[ft].get(cs,[])
|
||||||
|
l.append(Snippet(cs,cv,cdescr))
|
||||||
|
self._snippets[ft][cs] = l
|
||||||
|
cv = ""
|
||||||
|
cdescr = ""
|
||||||
|
cs = None
|
||||||
|
continue
|
||||||
else:
|
else:
|
||||||
vim.command(r'call feedkeys("\<BS>")')
|
cv += line
|
||||||
|
|
||||||
|
def _load_snippets_for(self, ft):
|
||||||
|
self._snippets[ft] = {}
|
||||||
|
for p in vim.eval("&runtimepath").split(',')[::-1]:
|
||||||
|
pattern = p + os.path.sep + "PySnippets" + os.path.sep + \
|
||||||
|
"*%s.snippets" % ft
|
||||||
|
|
||||||
|
for fn in glob.glob(pattern):
|
||||||
|
self._load_snippets_from(ft, fn)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def _find_snippets(self, ft, trigger):
|
||||||
|
snips = self._snippets.get(ft,None)
|
||||||
|
if not snips:
|
||||||
|
return []
|
||||||
|
|
||||||
|
return snips.get(trigger, [])
|
||||||
|
|
||||||
|
|
||||||
PySnipSnippets = SnippetManager()
|
PySnipSnippets = SnippetManager()
|
||||||
|
|
||||||
|
265
test.py
265
test.py
@ -15,6 +15,11 @@ ARR_R = '\x1bOC'
|
|||||||
ARR_U = '\x1bOA'
|
ARR_U = '\x1bOA'
|
||||||
ARR_D = '\x1bOB'
|
ARR_D = '\x1bOB'
|
||||||
|
|
||||||
|
# Defined Constants
|
||||||
|
JF = "?" # Jump forwards
|
||||||
|
JB = "+" # Jump backwards
|
||||||
|
EX = "\t" # EXPAND
|
||||||
|
|
||||||
def send(s,session):
|
def send(s,session):
|
||||||
os.system("screen -x %s -X stuff '%s'" % (session,s))
|
os.system("screen -x %s -X stuff '%s'" % (session,s))
|
||||||
|
|
||||||
@ -103,129 +108,132 @@ class _SimpleExpands(_VimTest):
|
|||||||
snippets = ("hallo", "Hallo Welt!")
|
snippets = ("hallo", "Hallo Welt!")
|
||||||
|
|
||||||
class SimpleExpand_ExceptCorrectResult(_SimpleExpands):
|
class SimpleExpand_ExceptCorrectResult(_SimpleExpands):
|
||||||
keys = "hallo\t"
|
keys = "hallo" + EX
|
||||||
wanted = "Hallo Welt!"
|
wanted = "Hallo Welt!"
|
||||||
|
|
||||||
class SimpleExpandTypeAfterExpand_ExceptCorrectResult(_SimpleExpands):
|
class SimpleExpandTypeAfterExpand_ExceptCorrectResult(_SimpleExpands):
|
||||||
keys = "hallo\tand again"
|
keys = "hallo" + EX + "and again"
|
||||||
wanted = "Hallo Welt!and again"
|
wanted = "Hallo Welt!and again"
|
||||||
|
|
||||||
class SimpleExpandTypeAndDelete_ExceptCorrectResult(_SimpleExpands):
|
class SimpleExpandTypeAndDelete_ExceptCorrectResult(_SimpleExpands):
|
||||||
keys = "na du hallo\tand again\b\b\b\b\bblub"
|
keys = "na du hallo" + EX + "and again\b\b\b\b\bblub"
|
||||||
wanted = "na du Hallo Welt!and blub"
|
wanted = "na du Hallo Welt!and blub"
|
||||||
|
|
||||||
class DoNotExpandAfterSpace_ExceptCorrectResult(_SimpleExpands):
|
class DoNotExpandAfterSpace_ExceptCorrectResult(_SimpleExpands):
|
||||||
keys = "hallo \t"
|
keys = "hallo " + EX
|
||||||
wanted = "hallo "
|
wanted = "hallo "
|
||||||
|
|
||||||
class ExpandInTheMiddleOfLine_ExceptCorrectResult(_SimpleExpands):
|
class ExpandInTheMiddleOfLine_ExceptCorrectResult(_SimpleExpands):
|
||||||
keys = "Wie hallo gehts?" + ESC + "bhi\t"
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX
|
||||||
wanted = "Wie Hallo Welt! gehts?"
|
wanted = "Wie Hallo Welt! gehts"
|
||||||
class MultilineExpand_ExceptCorrectResult(_VimTest):
|
class MultilineExpand_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts?")
|
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts")
|
||||||
keys = "Wie hallo gehts?" + ESC + "bhi\t"
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX
|
||||||
wanted = "Wie Hallo Welt!\nUnd Wie gehts? gehts?"
|
wanted = "Wie Hallo Welt!\nUnd Wie gehts gehts"
|
||||||
class MultilineExpandTestTyping_ExceptCorrectResult(_VimTest):
|
class MultilineExpandTestTyping_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts?")
|
snippets = ("hallo", "Hallo Welt!\nUnd Wie gehts")
|
||||||
wanted = "Wie Hallo Welt!\nUnd Wie gehts?Huiui! gehts?"
|
wanted = "Wie Hallo Welt!\nUnd Wie gehtsHuiui! gehts"
|
||||||
keys = "Wie hallo gehts?" + ESC + "bhi\tHuiui!"
|
keys = "Wie hallo gehts" + ESC + "bhi" + EX + "Huiui!"
|
||||||
|
|
||||||
############
|
############
|
||||||
# TabStops #
|
# TabStops #
|
||||||
############
|
############
|
||||||
class TabStopSimpleReplace_ExceptCorrectResult(_VimTest):
|
class TabStopSimpleReplace_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo ${0:End} ${1:Beginning}")
|
snippets = ("hallo", "hallo ${0:End} ${1:Beginning}")
|
||||||
keys = "hallo\tna\tDu Nase"
|
keys = "hallo" + EX + "na" + JF + "Du Nase"
|
||||||
wanted = "hallo Du Nase na"
|
wanted = "hallo Du Nase na"
|
||||||
class TabStopSimpleReplaceSurrounded_ExceptCorrectResult(_VimTest):
|
class TabStopSimpleReplaceSurrounded_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo ${0:End} a small feed")
|
snippets = ("hallo", "hallo ${0:End} a small feed")
|
||||||
keys = "hallo\tNase"
|
keys = "hallo" + EX + "Nase"
|
||||||
wanted = "hallo Nase a small feed"
|
wanted = "hallo Nase a small feed"
|
||||||
class TabStopSimpleReplaceSurrounded1_ExceptCorrectResult(_VimTest):
|
class TabStopSimpleReplaceSurrounded1_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo $0 a small feed")
|
snippets = ("hallo", "hallo $0 a small feed")
|
||||||
keys = "hallo\tNase"
|
keys = "hallo" + EX + "Nase"
|
||||||
wanted = "hallo Nase a small feed"
|
wanted = "hallo Nase a small feed"
|
||||||
class TabStopSimpleReplaceEndingWithNewline_ExceptCorrectResult(_VimTest):
|
class TabStopSimpleReplaceEndingWithNewline_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "Hallo Welt\n")
|
snippets = ("hallo", "Hallo Welt\n")
|
||||||
keys = "hallo\t\nAnd more"
|
keys = "hallo" + EX + "\nAnd more"
|
||||||
wanted = "Hallo Welt\n\nAnd more"
|
wanted = "Hallo Welt\n\nAnd more"
|
||||||
|
|
||||||
|
|
||||||
class ExitTabStop_ExceptCorrectResult(_VimTest):
|
class ExitTabStop_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("echo", "$0 run")
|
snippets = ("echo", "$0 run")
|
||||||
keys = "echo\ttest"
|
keys = "echo" + EX + "test"
|
||||||
wanted = "test run"
|
wanted = "test run"
|
||||||
|
|
||||||
class TabStopNoReplace_ExceptCorrectResult(_VimTest):
|
class TabStopNoReplace_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("echo", "echo ${1:Hallo}")
|
snippets = ("echo", "echo ${1:Hallo}")
|
||||||
keys = "echo\t"
|
keys = "echo" + EX
|
||||||
wanted = "echo Hallo"
|
wanted = "echo Hallo"
|
||||||
|
|
||||||
# TODO: multiline tabstops, maybe?
|
# TODO: multiline tabstops, maybe?
|
||||||
|
|
||||||
class TabStopEscapingWhenSelected_ECR(_VimTest):
|
class TabStopEscapingWhenSelected_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1:default}")
|
snippets = ("test", "snip ${1:default}")
|
||||||
keys = "test\t" + ESC + "0ihi"
|
keys = "test" + EX + ESC + "0ihi"
|
||||||
wanted = "hisnip default"
|
wanted = "hisnip default"
|
||||||
class TabStopEscapingWhenSelectedSingleCharTS_ECR(_VimTest):
|
class TabStopEscapingWhenSelectedSingleCharTS_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1:i}")
|
snippets = ("test", "snip ${1:i}")
|
||||||
keys = "test\t" + ESC + "0ihi"
|
keys = "test" + EX + ESC + "0ihi"
|
||||||
wanted = "hisnip i"
|
wanted = "hisnip i"
|
||||||
class TabStopEscapingWhenSelectedNoCharTS_ECR(_VimTest):
|
class TabStopEscapingWhenSelectedNoCharTS_ECR(_VimTest):
|
||||||
snippets = ("test", "snip $1")
|
snippets = ("test", "snip $1")
|
||||||
keys = "test\t" + ESC + "0ihi"
|
keys = "test" + EX + ESC + "0ihi"
|
||||||
wanted = "hisnip "
|
wanted = "hisnip "
|
||||||
|
|
||||||
class TabStopUsingBackspaceToDeleteDefaultValue_ECR(_VimTest):
|
class TabStopUsingBackspaceToDeleteDefaultValue_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
||||||
keys = "test\t" + BS
|
keys = "test" + EX + BS
|
||||||
wanted = "snip "
|
wanted = "snip "
|
||||||
class TabStopUsingBackspaceToDeleteDefaultValueInFirstTab_ECR(_VimTest):
|
class TabStopUsingBackspaceToDeleteDefaultValueInFirstTab_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
||||||
"${1:default} ${2:def}")
|
"${1:default} ${2:def}")
|
||||||
keys = "test\t" + BS + "\thi"
|
keys = "test" + EX + BS + JF + "hi"
|
||||||
wanted = "snip m2 hi"
|
wanted = "snip m2 hi"
|
||||||
class TabStopUsingBackspaceToDeleteDefaultValueInSecondTab_ECR(_VimTest):
|
class TabStopUsingBackspaceToDeleteDefaultValueInSecondTab_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
snippets = ("test", "snip ${1/.+/(?0:m1)/} ${2/.+/(?0:m2)/} "
|
||||||
"${1:default} ${2:def}")
|
"${1:default} ${2:def}")
|
||||||
keys = "test\thi\t" + BS
|
keys = "test" + EX + "hi" + JF + BS
|
||||||
wanted = "snip m1 hi "
|
wanted = "snip m1 hi "
|
||||||
class TabStopUsingBackspaceToDeleteDefaultValueTypeSomethingThen_ECR(_VimTest):
|
class TabStopUsingBackspaceToDeleteDefaultValueTypeSomethingThen_ECR(_VimTest):
|
||||||
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
snippets = ("test", "snip ${1/.+/(?0:matched)/} ${1:default}")
|
||||||
keys = "test\t" + BS + "hallo"
|
keys = "test" + EX + BS + "hallo"
|
||||||
wanted = "snip matched hallo"
|
wanted = "snip matched hallo"
|
||||||
|
|
||||||
class TabStopWithOneChar_ExceptCorrectResult(_VimTest):
|
class TabStopWithOneChar_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "nothing ${1:i} hups")
|
snippets = ("hallo", "nothing ${1:i} hups")
|
||||||
keys = "hallo\tship"
|
keys = "hallo" + EX + "ship"
|
||||||
wanted = "nothing ship hups"
|
wanted = "nothing ship hups"
|
||||||
|
|
||||||
class TabStopTestJumping_ExceptCorrectResult(_VimTest):
|
class TabStopTestJumping_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo ${2:End} mitte ${1:Beginning}")
|
snippets = ("hallo", "hallo ${2:End} mitte ${1:Beginning}")
|
||||||
keys = "hallo\t\tTest\tHi"
|
keys = "hallo" + EX + JF + "Test" + JF + "Hi"
|
||||||
wanted = "hallo Test mitte BeginningHi"
|
wanted = "hallo Test mitte BeginningHi"
|
||||||
class TabStopTestJumping2_ExceptCorrectResult(_VimTest):
|
class TabStopTestJumping2_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo $2 $1")
|
snippets = ("hallo", "hallo $2 $1")
|
||||||
keys = "hallo\t\tTest\tHi"
|
keys = "hallo" + EX + JF + "Test" + JF + "Hi"
|
||||||
wanted = "hallo Test Hi"
|
wanted = "hallo Test Hi"
|
||||||
|
|
||||||
class TestJumpingDontJumpToEndIfThereIsTabZero_ExceptCorrectResult(_VimTest):
|
class TestJumpingDontJumpToEndIfThereIsTabZero_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo $0 $1")
|
snippets = ("hallo", "hallo $0 $1")
|
||||||
keys = "hallo\tTest\tHi\t\tdu"
|
keys = "hallo" + EX + "Test" + JF + "Hi" + JF + JF + "du"
|
||||||
wanted = "hallo Hidu Test"
|
wanted = "hallo Hidu Test"
|
||||||
|
|
||||||
class TabStopTestBackwardJumping_ExceptCorrectResult(_VimTest):
|
class TabStopTestBackwardJumping_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo ${2:End} mitte${1:Beginning}")
|
snippets = ("hallo", "hallo ${2:End} mitte${1:Beginning}")
|
||||||
keys = "hallo\tSomelengthy Text\tHi+Lets replace it again\tBlah\t++\t"
|
keys = "hallo" + EX + "Somelengthy Text" + JF + "Hi" + JB + \
|
||||||
|
"Lets replace it again" + JF + "Blah" + JF + JB*2 + JF
|
||||||
wanted = "hallo Blah mitteLets replace it again"
|
wanted = "hallo Blah mitteLets replace it again"
|
||||||
class TabStopTestBackwardJumping2_ExceptCorrectResult(_VimTest):
|
class TabStopTestBackwardJumping2_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo $2 $1")
|
snippets = ("hallo", "hallo $2 $1")
|
||||||
keys = "hallo\tSomelengthy Text\tHi+Lets replace it again\tBlah\t++\t"
|
keys = "hallo" + EX + "Somelengthy Text" + JF + "Hi" + JB + \
|
||||||
|
"Lets replace it again" + JF + "Blah" + JF + JB*2 + JF
|
||||||
wanted = "hallo Blah Lets replace it again"
|
wanted = "hallo Blah Lets replace it again"
|
||||||
|
|
||||||
class TabStopTestMultilineExpand_ExceptCorrectResult(_VimTest):
|
class TabStopTestMultilineExpand_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("hallo", "hallo $0\nnice $1 work\n$3 $2\nSeem to work")
|
snippets = ("hallo", "hallo $0\nnice $1 work\n$3 $2\nSeem to work")
|
||||||
keys ="test hallo World" + ESC + "02f i\tworld\ttry\ttest\tone more\t\t"
|
keys ="test hallo World" + ESC + "02f i" + EX + "world" + JF + "try" + \
|
||||||
|
JF + "test" + JF + "one more" + JF + JF
|
||||||
wanted = "test hallo one more\nnice world work\n" \
|
wanted = "test hallo one more\nnice world work\n" \
|
||||||
"test try\nSeem to work World"
|
"test try\nSeem to work World"
|
||||||
|
|
||||||
@ -233,35 +241,34 @@ class TabStopTestMultilineExpand_ExceptCorrectResult(_VimTest):
|
|||||||
|
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteNone_ECR(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteNone_ECR(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
||||||
# keys = "test\t"
|
# keys = "test" + EX
|
||||||
# wanted = """<div id="some_id">\n \n</div>"""
|
# wanted = """<div id="some_id">\n \n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteFirst(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteFirst(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
||||||
# keys = "test\t blah\tHallo"
|
# keys = "test" + EX + " blah" + JF + "Hallo"
|
||||||
# wanted = """<div blah>\n Hallo\n</div>"""
|
# wanted = """<div blah>\n Hallo\n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_DeleteFirst(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_DeleteFirst(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
||||||
# keys = "test\t" + BS + "tHallo"
|
# keys = "test" + EX + BS + "tHallo"
|
||||||
# wanted = """<div>\n Hallo\n</div>"""
|
# wanted = """<div>\n Hallo\n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteFirstJumpBack(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteFirstJumpBack(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
||||||
# keys = "test\tHi\ttHallo+SomethingElse\tNupl\tNox"
|
# keys = "test" + EX + "Hi" + JF + "tHallo+SomethingElse\tNupl\tNox"
|
||||||
# wanted = """<divSomethingElse>\n Nulp Nox\n</div>"""
|
# wanted = """<divSomethingElse>\n Nulp Nox\n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteSecond(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteSecond(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $0\n</div>""")
|
||||||
# keys = "test\t\tno\tEnd"
|
# keys = "test" + EX + JF + "no\tEnd"
|
||||||
# wanted = """<div id="no">\n End\n</div>"""
|
# wanted = """<div id="no">\n End\n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBack(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBack(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
||||||
# keys = "test\t\tno\tEnd+yes\tBegin\tHi"
|
# keys = "test" + EX + JF + "no\tEnd+yes\tBegin\tHi"
|
||||||
# wanted = """<div id="yes">\n Begin Hi\n</div>"""
|
# wanted = """<div id="yes">\n Begin Hi\n</div>"""
|
||||||
# class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBackTwice(_VimTest):
|
# class TabStop_TSInDefaultTextRLExample_OverwriteSecondTabBackTwice(_VimTest):
|
||||||
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
# snippets = ("test", """<div${1: id="${2:some_id}"}>\n $3 $0\n</div>""")
|
||||||
# keys = "test\t\tno\tEnd+yes+ allaway\tThird\tLast"
|
# keys = "test" + EX + JF + "no\tEnd+yes+ allaway\tThird\tLast"
|
||||||
# wanted = """<div allaway>\n Third Last\n</div>"""
|
# wanted = """<div allaway>\n Third Last\n</div>"""
|
||||||
#
|
#
|
||||||
|
|
||||||
print "expand, jump forward, jump backwards should all be individual"
|
|
||||||
print "Shell eval snippets"
|
print "Shell eval snippets"
|
||||||
print "Tabstop in default text of tabstop. Like in Ruby Dir snippet in TextMate"
|
print "Tabstop in default text of tabstop. Like in Ruby Dir snippet in TextMate"
|
||||||
|
|
||||||
@ -270,11 +277,11 @@ print "Tabstop in default text of tabstop. Like in Ruby Dir snippet in TextMate"
|
|||||||
print "Recursive Tabstops: TODO: this will still take some time"
|
print "Recursive Tabstops: TODO: this will still take some time"
|
||||||
# class RecTabStops_SimpleCase_ExceptCorrectResult(_VimTest):
|
# class RecTabStops_SimpleCase_ExceptCorrectResult(_VimTest):
|
||||||
# snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
# snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
||||||
# keys = "m\tm\thello\tworld\tend"
|
# keys = "m" + EX + "m" + JF + "hello\tworld\tend"
|
||||||
# wanted = "[ [ hello world ] end ]"
|
# wanted = "[ [ hello world ] end ]"
|
||||||
# class RecTabStops_SimpleCaseLeaveSecond_ExceptCorrectResult(_VimTest):
|
# class RecTabStops_SimpleCaseLeaveSecond_ExceptCorrectResult(_VimTest):
|
||||||
# snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
# snippets = ("m", "[ ${1:first} ${2:sec} ]")
|
||||||
# keys = "m\tm\thello\tworld\t"
|
# keys = "m" + EX + "m" + JF + "hello\tworld\t"
|
||||||
# wanted = "[ [ hello world ] sec ]"
|
# wanted = "[ [ hello world ] sec ]"
|
||||||
|
|
||||||
# # TODO: pasting with <C-R> while mirroring, also multiline
|
# # TODO: pasting with <C-R> while mirroring, also multiline
|
||||||
@ -283,145 +290,147 @@ print "Recursive Tabstops: TODO: this will still take some time"
|
|||||||
# ###########
|
# ###########
|
||||||
class TextTabStopTextAfterTab_ExceptCorrectResult(_VimTest):
|
class TextTabStopTextAfterTab_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 Hinten\n$1")
|
snippets = ("test", "$1 Hinten\n$1")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo Hinten\nhallo"
|
wanted = "hallo Hinten\nhallo"
|
||||||
class TextTabStopTextBeforeTab_ExceptCorrectResult(_VimTest):
|
class TextTabStopTextBeforeTab_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "Vorne $1\n$1")
|
snippets = ("test", "Vorne $1\n$1")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "Vorne hallo\nhallo"
|
wanted = "Vorne hallo\nhallo"
|
||||||
class TextTabStopTextSurroundedTab_ExceptCorrectResult(_VimTest):
|
class TextTabStopTextSurroundedTab_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "Vorne $1 Hinten\n$1")
|
snippets = ("test", "Vorne $1 Hinten\n$1")
|
||||||
keys = "test\thallo test"
|
keys = "test" + EX + "hallo test"
|
||||||
wanted = "Vorne hallo test Hinten\nhallo test"
|
wanted = "Vorne hallo test Hinten\nhallo test"
|
||||||
|
|
||||||
class TextTabStopTextBeforeMirror_ExceptCorrectResult(_VimTest):
|
class TextTabStopTextBeforeMirror_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\nVorne $1")
|
snippets = ("test", "$1\nVorne $1")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo\nVorne hallo"
|
wanted = "hallo\nVorne hallo"
|
||||||
class TextTabStopAfterMirror_ExceptCorrectResult(_VimTest):
|
class TextTabStopAfterMirror_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1 Hinten")
|
snippets = ("test", "$1\n$1 Hinten")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo\nhallo Hinten"
|
wanted = "hallo\nhallo Hinten"
|
||||||
class TextTabStopSurroundMirror_ExceptCorrectResult(_VimTest):
|
class TextTabStopSurroundMirror_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\nVorne $1 Hinten")
|
snippets = ("test", "$1\nVorne $1 Hinten")
|
||||||
keys = "test\thallo welt"
|
keys = "test" + EX + "hallo welt"
|
||||||
wanted = "hallo welt\nVorne hallo welt Hinten"
|
wanted = "hallo welt\nVorne hallo welt Hinten"
|
||||||
class TextTabStopAllSurrounded_ExceptCorrectResult(_VimTest):
|
class TextTabStopAllSurrounded_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ObenVorne $1 ObenHinten\nVorne $1 Hinten")
|
snippets = ("test", "ObenVorne $1 ObenHinten\nVorne $1 Hinten")
|
||||||
keys = "test\thallo welt"
|
keys = "test" + EX + "hallo welt"
|
||||||
wanted = "ObenVorne hallo welt ObenHinten\nVorne hallo welt Hinten"
|
wanted = "ObenVorne hallo welt ObenHinten\nVorne hallo welt Hinten"
|
||||||
|
|
||||||
class MirrorBeforeTabstopLeave_ExceptCorrectResult(_VimTest):
|
class MirrorBeforeTabstopLeave_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1:this is it} $1")
|
snippets = ("test", "$1 ${1:this is it} $1")
|
||||||
keys = "test\t"
|
keys = "test" + EX
|
||||||
wanted = "this is it this is it this is it"
|
wanted = "this is it this is it this is it"
|
||||||
class MirrorBeforeTabstopOverwrite_ExceptCorrectResult(_VimTest):
|
class MirrorBeforeTabstopOverwrite_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1:this is it} $1")
|
snippets = ("test", "$1 ${1:this is it} $1")
|
||||||
keys = "test\ta"
|
keys = "test" + EX + "a"
|
||||||
wanted = "a a a"
|
wanted = "a a a"
|
||||||
|
|
||||||
class TextTabStopSimpleMirrorMultiline_ExceptCorrectResult(_VimTest):
|
class TextTabStopSimpleMirrorMultiline_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1")
|
snippets = ("test", "$1\n$1")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo\nhallo"
|
wanted = "hallo\nhallo"
|
||||||
class SimpleMirrorMultilineMany_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorMultilineMany_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", " $1\n$1\na$1b\n$1\ntest $1 mich")
|
snippets = ("test", " $1\n$1\na$1b\n$1\ntest $1 mich")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = " hallo\nhallo\nahallob\nhallo\ntest hallo mich"
|
wanted = " hallo\nhallo\nahallob\nhallo\ntest hallo mich"
|
||||||
class MultilineTabStopSimpleMirrorMultiline_ExceptCorrectResult(_VimTest):
|
class MultilineTabStopSimpleMirrorMultiline_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n\n$1\n\n$1")
|
snippets = ("test", "$1\n\n$1\n\n$1")
|
||||||
keys = "test\thallo Du\nHi"
|
keys = "test" + EX + "hallo Du\nHi"
|
||||||
wanted = "hallo Du\nHi\n\nhallo Du\nHi\n\nhallo Du\nHi"
|
wanted = "hallo Du\nHi\n\nhallo Du\nHi\n\nhallo Du\nHi"
|
||||||
class MultilineTabStopSimpleMirrorMultiline1_ExceptCorrectResult(_VimTest):
|
class MultilineTabStopSimpleMirrorMultiline1_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1\n$1")
|
snippets = ("test", "$1\n$1\n$1")
|
||||||
keys = "test\thallo Du\nHi"
|
keys = "test" + EX + "hallo Du\nHi"
|
||||||
wanted = "hallo Du\nHi\nhallo Du\nHi\nhallo Du\nHi"
|
wanted = "hallo Du\nHi\nhallo Du\nHi\nhallo Du\nHi"
|
||||||
# TODO: Multiline delete over line endings
|
# TODO: Multiline delete over line endings
|
||||||
class MultilineTabStopSimpleMirrorDeleteInLine_ExceptCorrectResult(_VimTest):
|
class MultilineTabStopSimpleMirrorDeleteInLine_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1\n$1")
|
snippets = ("test", "$1\n$1\n$1")
|
||||||
keys = "test\thallo Du\nHi\b\bAch Blah"
|
keys = "test" + EX + "hallo Du\nHi\b\bAch Blah"
|
||||||
wanted = "hallo Du\nAch Blah\nhallo Du\nAch Blah\nhallo Du\nAch Blah"
|
wanted = "hallo Du\nAch Blah\nhallo Du\nAch Blah\nhallo Du\nAch Blah"
|
||||||
class TextTabStopSimpleMirrorMultilineMirrorInFront_ECR(_VimTest):
|
class TextTabStopSimpleMirrorMultilineMirrorInFront_ECR(_VimTest):
|
||||||
snippets = ("test", "$1\n${1:sometext}")
|
snippets = ("test", "$1\n${1:sometext}")
|
||||||
keys = "test\thallo\nagain"
|
keys = "test" + EX + "hallo\nagain"
|
||||||
wanted = "hallo\nagain\nhallo\nagain"
|
wanted = "hallo\nagain\nhallo\nagain"
|
||||||
|
|
||||||
class SimpleMirrorDelete_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorDelete_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1")
|
snippets = ("test", "$1\n$1")
|
||||||
keys = "test\thallo\b\b"
|
keys = "test" + EX + "hallo\b\b"
|
||||||
wanted = "hal\nhal"
|
wanted = "hal\nhal"
|
||||||
|
|
||||||
class SimpleMirrorSameLine_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorSameLine_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 $1")
|
snippets = ("test", "$1 $1")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo hallo"
|
wanted = "hallo hallo"
|
||||||
class Transformation_SimpleMirrorSameLineBeforeTabDefVal_ECR(_VimTest):
|
class Transformation_SimpleMirrorSameLineBeforeTabDefVal_ECR(_VimTest):
|
||||||
snippets = ("test", "$1 ${1:replace me}")
|
snippets = ("test", "$1 ${1:replace me}")
|
||||||
keys = "test\thallo foo"
|
keys = "test" + EX + "hallo foo"
|
||||||
wanted = "hallo foo hallo foo"
|
wanted = "hallo foo hallo foo"
|
||||||
class SimpleMirrorSameLineMany_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorSameLineMany_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 $1 $1 $1")
|
snippets = ("test", "$1 $1 $1 $1")
|
||||||
keys = "test\thallo du"
|
keys = "test" + EX + "hallo du"
|
||||||
wanted = "hallo du hallo du hallo du hallo du"
|
wanted = "hallo du hallo du hallo du hallo du"
|
||||||
class SimpleMirrorSameLineManyMultiline_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorSameLineManyMultiline_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 $1 $1 $1")
|
snippets = ("test", "$1 $1 $1 $1")
|
||||||
keys = "test\thallo du\nwie gehts?"
|
keys = "test" + EX + "hallo du\nwie gehts"
|
||||||
wanted = "hallo du\nwie gehts? hallo du\nwie gehts? hallo du\nwie gehts?" \
|
wanted = "hallo du\nwie gehts hallo du\nwie gehts hallo du\nwie gehts" \
|
||||||
" hallo du\nwie gehts?"
|
" hallo du\nwie gehts"
|
||||||
class SimpleMirrorDeleteSomeEnterSome_ExceptCorrectResult(_VimTest):
|
class SimpleMirrorDeleteSomeEnterSome_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1\n$1")
|
snippets = ("test", "$1\n$1")
|
||||||
keys = "test\thallo\b\bhups"
|
keys = "test" + EX + "hallo\b\bhups"
|
||||||
wanted = "halhups\nhalhups"
|
wanted = "halhups\nhalhups"
|
||||||
|
|
||||||
|
|
||||||
class SimpleTabstopWithDefaultSimpelType_ExceptCorrectResult(_VimTest):
|
class SimpleTabstopWithDefaultSimpelType_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha ${1:defa}\n$1")
|
snippets = ("test", "ha ${1:defa}\n$1")
|
||||||
keys = "test\tworld"
|
keys = "test" + EX + "world"
|
||||||
wanted = "ha world\nworld"
|
wanted = "ha world\nworld"
|
||||||
class SimpleTabstopWithDefaultComplexType_ExceptCorrectResult(_VimTest):
|
class SimpleTabstopWithDefaultComplexType_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
||||||
keys = "test\tworld"
|
keys = "test" + EX + "world"
|
||||||
wanted = "ha world world\nanother: world mirror"
|
wanted = "ha world world\nanother: world mirror"
|
||||||
class SimpleTabstopWithDefaultSimpelKeep_ExceptCorrectResult(_VimTest):
|
class SimpleTabstopWithDefaultSimpelKeep_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha ${1:defa}\n$1")
|
snippets = ("test", "ha ${1:defa}\n$1")
|
||||||
keys = "test\t"
|
keys = "test" + EX
|
||||||
wanted = "ha defa\ndefa"
|
wanted = "ha defa\ndefa"
|
||||||
class SimpleTabstopWithDefaultComplexKeep_ExceptCorrectResult(_VimTest):
|
class SimpleTabstopWithDefaultComplexKeep_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
snippets = ("test", "ha ${1:default value} $1\nanother: $1 mirror")
|
||||||
keys = "test\t"
|
keys = "test" + EX
|
||||||
wanted = "ha default value default value\nanother: default value mirror"
|
wanted = "ha default value default value\nanother: default value mirror"
|
||||||
|
|
||||||
class TabstopWithMirrorManyFromAll_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorManyFromAll_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha $5 ${1:blub} $4 $0 ${2:$1.h} $1 $3 ${4:More}")
|
snippets = ("test", "ha $5 ${1:blub} $4 $0 ${2:$1.h} $1 $3 ${4:More}")
|
||||||
keys = "test\thi\thu\thub\thulla\tblah\tend"
|
keys = "test" + EX + "hi" + JF + "hu" + JF + "hub" + JF + "hulla" + \
|
||||||
|
JF + "blah" + JF + "end"
|
||||||
wanted = "ha blah hi hulla end hu hi hub hulla"
|
wanted = "ha blah hi hulla end hu hi hub hulla"
|
||||||
class TabstopWithMirrorInDefaultNoType_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorInDefaultNoType_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha ${1:blub} ${2:$1.h}")
|
snippets = ("test", "ha ${1:blub} ${2:$1.h}")
|
||||||
keys = "test\t"
|
keys = "test" + EX
|
||||||
wanted = "ha blub blub.h"
|
wanted = "ha blub blub.h"
|
||||||
class TabstopWithMirrorInDefaultTwiceAndExtra_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorInDefaultTwiceAndExtra_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha $1 ${2:$1.h $1.c}\ntest $1")
|
snippets = ("test", "ha $1 ${2:$1.h $1.c}\ntest $1")
|
||||||
keys = "test\tstdin"
|
keys = "test" + EX + "stdin"
|
||||||
wanted = "ha stdin stdin.h stdin.c\ntest stdin"
|
wanted = "ha stdin stdin.h stdin.c\ntest stdin"
|
||||||
class TabstopWithMirrorInDefaultMultipleLeave_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorInDefaultMultipleLeave_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
||||||
keys = "test\tstdin"
|
keys = "test" + EX + "stdin"
|
||||||
wanted = "ha stdin snip stdin.h snip"
|
wanted = "ha stdin snip stdin.h snip"
|
||||||
class TabstopWithMirrorInDefaultMultipleOverwrite_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorInDefaultMultipleOverwrite_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
snippets = ("test", "ha $1 ${2:snip} ${3:$1.h $2}")
|
||||||
keys = "test\tstdin\tdo snap"
|
keys = "test" + EX + "stdin" + JF + "do snap"
|
||||||
wanted = "ha stdin do snap stdin.h do snap"
|
wanted = "ha stdin do snap stdin.h do snap"
|
||||||
class TabstopWithMirrorInDefaultOverwrite_ExceptCorrectResult(_VimTest):
|
class TabstopWithMirrorInDefaultOverwrite_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "ha $1 ${2:$1.h}")
|
snippets = ("test", "ha $1 ${2:$1.h}")
|
||||||
keys = "test\tstdin\toverwritten"
|
keys = "test" + EX + "stdin" + JF + "overwritten"
|
||||||
wanted = "ha stdin overwritten"
|
wanted = "ha stdin overwritten"
|
||||||
|
|
||||||
class MirrorRealLifeExample_ExceptCorrectResult(_VimTest):
|
class MirrorRealLifeExample_ExceptCorrectResult(_VimTest):
|
||||||
snippets = (
|
snippets = (
|
||||||
("for", "for(size_t ${2:i} = 0; $2 < ${1:count}; ${3:++$2})" \
|
("for", "for(size_t ${2:i} = 0; $2 < ${1:count}; ${3:++$2})" \
|
||||||
"\n{\n\t${0:/* code */}\n}"),
|
"\n{\n" + EX + "${0:/* code */}\n}"),
|
||||||
)
|
)
|
||||||
keys ="for\t100\tavar\b\b\b\ba_variable\ta_variable *= 2\t// do nothing"
|
keys ="for" + EX + "100" + JF + "avar\b\b\b\ba_variable" + JF + \
|
||||||
|
"a_variable *= 2" + JF + "// do nothing"
|
||||||
wanted = """for(size_t a_variable = 0; a_variable < 100; a_variable *= 2)
|
wanted = """for(size_t a_variable = 0; a_variable < 100; a_variable *= 2)
|
||||||
{
|
{
|
||||||
\t// do nothing
|
\t// do nothing
|
||||||
@ -433,113 +442,113 @@ class MirrorRealLifeExample_ExceptCorrectResult(_VimTest):
|
|||||||
###################
|
###################
|
||||||
class Transformation_SimpleCase_ExceptCorrectResult(_VimTest):
|
class Transformation_SimpleCase_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/foo/batzl/}")
|
snippets = ("test", "$1 ${1/foo/batzl/}")
|
||||||
keys = "test\thallo foo boy"
|
keys = "test" + EX + "hallo foo boy"
|
||||||
wanted = "hallo foo boy hallo batzl boy"
|
wanted = "hallo foo boy hallo batzl boy"
|
||||||
class Transformation_SimpleCaseNoTransform_ExceptCorrectResult(_VimTest):
|
class Transformation_SimpleCaseNoTransform_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/foo/batzl/}")
|
snippets = ("test", "$1 ${1/foo/batzl/}")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo hallo"
|
wanted = "hallo hallo"
|
||||||
class Transformation_SimpleCaseTransformInFront_ExceptCorrectResult(_VimTest):
|
class Transformation_SimpleCaseTransformInFront_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "${1/foo/batzl/} $1")
|
snippets = ("test", "${1/foo/batzl/} $1")
|
||||||
keys = "test\thallo foo"
|
keys = "test" + EX + "hallo foo"
|
||||||
wanted = "hallo batzl hallo foo"
|
wanted = "hallo batzl hallo foo"
|
||||||
class Transformation_SimpleCaseTransformInFrontDefVal_ECR(_VimTest):
|
class Transformation_SimpleCaseTransformInFrontDefVal_ECR(_VimTest):
|
||||||
snippets = ("test", "${1/foo/batzl/} ${1:replace me}")
|
snippets = ("test", "${1/foo/batzl/} ${1:replace me}")
|
||||||
keys = "test\thallo foo"
|
keys = "test" + EX + "hallo foo"
|
||||||
wanted = "hallo batzl hallo foo"
|
wanted = "hallo batzl hallo foo"
|
||||||
class Transformation_MultipleTransformations_ECR(_VimTest):
|
class Transformation_MultipleTransformations_ECR(_VimTest):
|
||||||
snippets = ("test", "${1:Some Text}${1/.+/\U$0\E/}\n${1/.+/\L$0\E/}")
|
snippets = ("test", "${1:Some Text}${1/.+/\U$0\E/}\n${1/.+/\L$0\E/}")
|
||||||
keys = "test\tSomE tExt "
|
keys = "test" + EX + "SomE tExt "
|
||||||
wanted = "SomE tExt SOME TEXT \nsome text "
|
wanted = "SomE tExt SOME TEXT \nsome text "
|
||||||
class Transformation_TabIsAtEndAndDeleted_ECR(_VimTest):
|
class Transformation_TabIsAtEndAndDeleted_ECR(_VimTest):
|
||||||
snippets = ("test", "${1/.+/is something/}${1:some}")
|
snippets = ("test", "${1/.+/is something/}${1:some}")
|
||||||
keys = "hallo test\tsome\b\b\b\b\b"
|
keys = "hallo test" + EX + "some\b\b\b\b\b"
|
||||||
wanted = "hallo "
|
wanted = "hallo "
|
||||||
class Transformation_TabIsAtEndAndDeleted1_ECR(_VimTest):
|
class Transformation_TabIsAtEndAndDeleted1_ECR(_VimTest):
|
||||||
snippets = ("test", "${1/.+/is something/}${1:some}")
|
snippets = ("test", "${1/.+/is something/}${1:some}")
|
||||||
keys = "hallo test\tsome\b\b\b\bmore"
|
keys = "hallo test" + EX + "some\b\b\b\bmore"
|
||||||
wanted = "hallo is somethingmore"
|
wanted = "hallo is somethingmore"
|
||||||
class Transformation_TabIsAtEndNoTextLeave_ECR(_VimTest):
|
class Transformation_TabIsAtEndNoTextLeave_ECR(_VimTest):
|
||||||
snippets = ("test", "${1/.+/is something/}${1}")
|
snippets = ("test", "${1/.+/is something/}${1}")
|
||||||
keys = "hallo test\t"
|
keys = "hallo test" + EX
|
||||||
wanted = "hallo "
|
wanted = "hallo "
|
||||||
class Transformation_TabIsAtEndNoTextType_ECR(_VimTest):
|
class Transformation_TabIsAtEndNoTextType_ECR(_VimTest):
|
||||||
snippets = ("test", "${1/.+/is something/}${1}")
|
snippets = ("test", "${1/.+/is something/}${1}")
|
||||||
keys = "hallo test\tb"
|
keys = "hallo test" + EX + "b"
|
||||||
wanted = "hallo is somethingb"
|
wanted = "hallo is somethingb"
|
||||||
class Transformation_InsideTabLeaveAtDefault_ECR(_VimTest):
|
class Transformation_InsideTabLeaveAtDefault_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
||||||
keys = "test\tsometext\t"
|
keys = "test" + EX + "sometext" + JF
|
||||||
wanted = "sometext defined sometext"
|
wanted = "sometext defined sometext"
|
||||||
class Transformation_InsideTabOvertype_ECR(_VimTest):
|
class Transformation_InsideTabOvertype_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
snippets = ("test", r"$1 ${2:${1/.+/(?0:defined $0)/}}")
|
||||||
keys = "test\tsometext\toverwrite"
|
keys = "test" + EX + "sometext" + JF + "overwrite"
|
||||||
wanted = "sometext overwrite"
|
wanted = "sometext overwrite"
|
||||||
|
|
||||||
|
|
||||||
class Transformation_Backreference_ExceptCorrectResult(_VimTest):
|
class Transformation_Backreference_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/([ab])oo/$1ull/}")
|
snippets = ("test", "$1 ${1/([ab])oo/$1ull/}")
|
||||||
keys = "test\tfoo boo aoo"
|
keys = "test" + EX + "foo boo aoo"
|
||||||
wanted = "foo boo aoo foo bull aoo"
|
wanted = "foo boo aoo foo bull aoo"
|
||||||
class Transformation_BackreferenceTwice_ExceptCorrectResult(_VimTest):
|
class Transformation_BackreferenceTwice_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/(dead) (par[^ ]*)/this $2 is a bit $1/}")
|
snippets = ("test", r"$1 ${1/(dead) (par[^ ]*)/this $2 is a bit $1/}")
|
||||||
keys = "test\tdead parrot"
|
keys = "test" + EX + "dead parrot"
|
||||||
wanted = "dead parrot this parrot is a bit dead"
|
wanted = "dead parrot this parrot is a bit dead"
|
||||||
|
|
||||||
class Transformation_CleverTransformUpercaseChar_ExceptCorrectResult(_VimTest):
|
class Transformation_CleverTransformUpercaseChar_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(.)/\u$1/}")
|
snippets = ("test", "$1 ${1/(.)/\u$1/}")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo Hallo"
|
wanted = "hallo Hallo"
|
||||||
class Transformation_CleverTransformLowercaseChar_ExceptCorrectResult(_VimTest):
|
class Transformation_CleverTransformLowercaseChar_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(.*)/\l$1/}")
|
snippets = ("test", "$1 ${1/(.*)/\l$1/}")
|
||||||
keys = "test\tHallo"
|
keys = "test" + EX + "Hallo"
|
||||||
wanted = "Hallo hallo"
|
wanted = "Hallo hallo"
|
||||||
class Transformation_CleverTransformLongUpper_ExceptCorrectResult(_VimTest):
|
class Transformation_CleverTransformLongUpper_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(.*)/\U$1\E/}")
|
snippets = ("test", "$1 ${1/(.*)/\U$1\E/}")
|
||||||
keys = "test\thallo"
|
keys = "test" + EX + "hallo"
|
||||||
wanted = "hallo HALLO"
|
wanted = "hallo HALLO"
|
||||||
class Transformation_CleverTransformLongLower_ExceptCorrectResult(_VimTest):
|
class Transformation_CleverTransformLongLower_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(.*)/\L$1\E/}")
|
snippets = ("test", "$1 ${1/(.*)/\L$1\E/}")
|
||||||
keys = "test\tHALLO"
|
keys = "test" + EX + "HALLO"
|
||||||
wanted = "HALLO hallo"
|
wanted = "HALLO hallo"
|
||||||
|
|
||||||
class Transformation_ConditionalInsertionSimple_ExceptCorrectResult(_VimTest):
|
class Transformation_ConditionalInsertionSimple_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(^a).*/(?0:began with an a)/}")
|
snippets = ("test", "$1 ${1/(^a).*/(?0:began with an a)/}")
|
||||||
keys = "test\ta some more text"
|
keys = "test" + EX + "a some more text"
|
||||||
wanted = "a some more text began with an a"
|
wanted = "a some more text began with an a"
|
||||||
class Transformation_CIBothDefinedNegative_ExceptCorrectResult(_VimTest):
|
class Transformation_CIBothDefinedNegative_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
||||||
keys = "test\tb some"
|
keys = "test" + EX + "b some"
|
||||||
wanted = "b some no"
|
wanted = "b some no"
|
||||||
class Transformation_CIBothDefinedPositive_ExceptCorrectResult(_VimTest):
|
class Transformation_CIBothDefinedPositive_ExceptCorrectResult(_VimTest):
|
||||||
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
snippets = ("test", "$1 ${1/(?:(^a)|(^b)).*/(?1:yes:no)/}")
|
||||||
keys = "test\ta some"
|
keys = "test" + EX + "a some"
|
||||||
wanted = "a some yes"
|
wanted = "a some yes"
|
||||||
class Transformation_ConditionalInsertRWEllipsis_ECR(_VimTest):
|
class Transformation_ConditionalInsertRWEllipsis_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/(\w+(?:\W+\w+){,7})\W*(.+)?/$1(?2:...)/}")
|
snippets = ("test", r"$1 ${1/(\w+(?:\W+\w+){,7})\W*(.+)?/$1(?2:...)/}")
|
||||||
keys = "test\ta b c d e f ghhh h oha"
|
keys = "test" + EX + "a b c d e f ghhh h oha"
|
||||||
wanted = "a b c d e f ghhh h oha a b c d e f ghhh h..."
|
wanted = "a b c d e f ghhh h oha a b c d e f ghhh h..."
|
||||||
|
|
||||||
class Transformation_CINewlines_ECR(_VimTest):
|
class Transformation_CINewlines_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/, */\n/}")
|
snippets = ("test", r"$1 ${1/, */\n/}")
|
||||||
keys = "test\ttest, hallo"
|
keys = "test" + EX + "test, hallo"
|
||||||
wanted = "test, hallo test\nhallo"
|
wanted = "test, hallo test\nhallo"
|
||||||
class Transformation_CIEscapedParensinReplace_ECR(_VimTest):
|
class Transformation_CIEscapedParensinReplace_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/hal((?:lo)|(?:ul))/(?1:ha\($1\))/}")
|
snippets = ("test", r"$1 ${1/hal((?:lo)|(?:ul))/(?1:ha\($1\))/}")
|
||||||
keys = "test\ttest, halul"
|
keys = "test" + EX + "test, halul"
|
||||||
wanted = "test, halul test, ha(ul)"
|
wanted = "test, halul test, ha(ul)"
|
||||||
|
|
||||||
class Transformation_OptionIgnoreCase_ECR(_VimTest):
|
class Transformation_OptionIgnoreCase_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/test/blah/i}")
|
snippets = ("test", r"$1 ${1/test/blah/i}")
|
||||||
keys = "test\tTEST"
|
keys = "test" + EX + "TEST"
|
||||||
wanted = "TEST blah"
|
wanted = "TEST blah"
|
||||||
class Transformation_OptionReplaceGlobal_ECR(_VimTest):
|
class Transformation_OptionReplaceGlobal_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/, */-/g}")
|
snippets = ("test", r"$1 ${1/, */-/g}")
|
||||||
keys = "test\ta, nice, building"
|
keys = "test" + EX + "a, nice, building"
|
||||||
wanted = "a, nice, building a-nice-building"
|
wanted = "a, nice, building a-nice-building"
|
||||||
class Transformation_OptionReplaceGlobalMatchInReplace_ECR(_VimTest):
|
class Transformation_OptionReplaceGlobalMatchInReplace_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1/, */, /g}")
|
snippets = ("test", r"$1 ${1/, */, /g}")
|
||||||
keys = "test\ta, nice, building"
|
keys = "test" + EX + "a, nice, building"
|
||||||
wanted = "a, nice, building a, nice, building"
|
wanted = "a, nice, building a, nice, building"
|
||||||
|
|
||||||
# TODO: conditional in conditional, case folding recursive
|
# TODO: conditional in conditional, case folding recursive
|
||||||
@ -549,9 +558,9 @@ class Transformation_OptionReplaceGlobalMatchInReplace_ECR(_VimTest):
|
|||||||
###################
|
###################
|
||||||
class CursorMovement_Multiline_ECR(_VimTest):
|
class CursorMovement_Multiline_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1:a tab}")
|
snippets = ("test", r"$1 ${1:a tab}")
|
||||||
keys = "test\tthis is something\nvery nice\nnot?\tmore text"
|
keys = "test" + EX + "this is something\nvery nice\nnot" + JF + "more text"
|
||||||
wanted = "this is something\nvery nice\nnot? " \
|
wanted = "this is something\nvery nice\nnot " \
|
||||||
"this is something\nvery nice\nnot?more text"
|
"this is something\nvery nice\nnotmore text"
|
||||||
|
|
||||||
|
|
||||||
# TODO: expandtab and therelikes
|
# TODO: expandtab and therelikes
|
||||||
@ -561,39 +570,44 @@ class CursorMovement_Multiline_ECR(_VimTest):
|
|||||||
######################
|
######################
|
||||||
class IMMoving_CursorsKeys_ECR(_VimTest):
|
class IMMoving_CursorsKeys_ECR(_VimTest):
|
||||||
snippets = ("test", "${1:Some}")
|
snippets = ("test", "${1:Some}")
|
||||||
keys = "test\ttext" + 3*ARR_U + 6*ARR_D
|
keys = "test" + EX + "text" + 3*ARR_U + 6*ARR_D
|
||||||
wanted = "text"
|
wanted = "text"
|
||||||
class IMMoving_DoNotAcceptInputWhenMoved_ECR(_VimTest):
|
class IMMoving_DoNotAcceptInputWhenMoved_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${1:a tab}")
|
snippets = ("test", r"$1 ${1:a tab}")
|
||||||
keys = "test\tthis" + ARR_L + "hallo"
|
keys = "test" + EX + "this" + ARR_L + "hallo"
|
||||||
wanted = "this thihallos"
|
wanted = "this thihallos"
|
||||||
class IMMoving_NoExiting_ECR(_VimTest):
|
class IMMoving_NoExiting_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + 7*ARR_L + "\thallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 7*ARR_L + \
|
||||||
|
JF + "hallo"
|
||||||
wanted = "hello tab hallo tab this"
|
wanted = "hello tab hallo tab this"
|
||||||
class IMMoving_NoExitingEventAtEnd_ECR(_VimTest):
|
class IMMoving_NoExitingEventAtEnd_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
snippets = ("test", r"$1 ${2:a tab} ${1:Tab}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + "\thallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + JF + "hallo"
|
||||||
wanted = "hello tab hallo tab this"
|
wanted = "hello tab hallo tab this"
|
||||||
class IMMoving_ExitWhenOutsideRight_ECR(_VimTest):
|
class IMMoving_ExitWhenOutsideRight_ECR(_VimTest):
|
||||||
snippets = ("test", r"$1 ${2:blub} ${1:Tab}")
|
snippets = ("test", r"$1 ${2:blub} ${1:Tab}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + ARR_R + "\thallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + ARR_R + JF + "hallo"
|
||||||
wanted = "hello tab blub tab hallothis"
|
wanted = "hello tab blub tab hallothis"
|
||||||
class IMMoving_NotExitingWhenBarelyOutsideLeft_ECR(_VimTest):
|
class IMMoving_NotExitingWhenBarelyOutsideLeft_ECR(_VimTest):
|
||||||
snippets = ("test", r"${1:Hi} ${2:blub}")
|
snippets = ("test", r"${1:Hi} ${2:blub}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + 3*ARR_L + "\thallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 3*ARR_L + \
|
||||||
|
JF + "hallo"
|
||||||
wanted = "hello tab hallo this"
|
wanted = "hello tab hallo this"
|
||||||
class IMMoving_ExitWhenOutsideLeft_ECR(_VimTest):
|
class IMMoving_ExitWhenOutsideLeft_ECR(_VimTest):
|
||||||
snippets = ("test", r"${1:Hi} ${2:blub}")
|
snippets = ("test", r"${1:Hi} ${2:blub}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + 4*ARR_L + "\thallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 4*ARR_L + \
|
||||||
|
JF + "hallo"
|
||||||
wanted = "hellohallo tab blub this"
|
wanted = "hellohallo tab blub this"
|
||||||
class IMMoving_ExitWhenOutsideAbove_ECR(_VimTest):
|
class IMMoving_ExitWhenOutsideAbove_ECR(_VimTest):
|
||||||
snippets = ("test", "${1:Hi}\n${2:blub}")
|
snippets = ("test", "${1:Hi}\n${2:blub}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + 1*ARR_U + "\t\nhallo"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 1*ARR_U + JF + \
|
||||||
|
"\nhallo"
|
||||||
wanted = "hallo\nhello tab\nblub this"
|
wanted = "hallo\nhello tab\nblub this"
|
||||||
class IMMoving_ExitWhenOutsideBelow_ECR(_VimTest):
|
class IMMoving_ExitWhenOutsideBelow_ECR(_VimTest):
|
||||||
snippets = ("test", "${1:Hi}\n${2:blub}")
|
snippets = ("test", "${1:Hi}\n${2:blub}")
|
||||||
keys = "hello test this" + ESC + "02f i\ttab" + 2*ARR_D + "\ttesthallo\n"
|
keys = "hello test this" + ESC + "02f i" + EX + "tab" + 2*ARR_D + JF + \
|
||||||
|
"testhallo\n"
|
||||||
wanted = "hello tab\nblub this\ntesthallo"
|
wanted = "hello tab\nblub this\ntesthallo"
|
||||||
|
|
||||||
####################
|
####################
|
||||||
@ -601,11 +615,11 @@ class IMMoving_ExitWhenOutsideBelow_ECR(_VimTest):
|
|||||||
####################
|
####################
|
||||||
class ProperIndenting_SimpleCase_ECR(_VimTest):
|
class ProperIndenting_SimpleCase_ECR(_VimTest):
|
||||||
snippets = ("test", "for\n blah")
|
snippets = ("test", "for\n blah")
|
||||||
keys = " test\tHui"
|
keys = " test" + EX + "Hui"
|
||||||
wanted = " for\n blahHui"
|
wanted = " for\n blahHui"
|
||||||
class ProperIndenting_SingleLineNoReindenting_ECR(_VimTest):
|
class ProperIndenting_SingleLineNoReindenting_ECR(_VimTest):
|
||||||
snippets = ("test", "hui")
|
snippets = ("test", "hui")
|
||||||
keys = " test\tblah"
|
keys = " test" + EX + "blah"
|
||||||
wanted = " huiblah"
|
wanted = " huiblah"
|
||||||
|
|
||||||
######################
|
######################
|
||||||
@ -614,12 +628,12 @@ class ProperIndenting_SingleLineNoReindenting_ECR(_VimTest):
|
|||||||
class Multiple_SimpleCaseSelectFirst_ECR(_VimTest):
|
class Multiple_SimpleCaseSelectFirst_ECR(_VimTest):
|
||||||
snippets = ( ("test", "Case1", "This is Case 1"),
|
snippets = ( ("test", "Case1", "This is Case 1"),
|
||||||
("test", "Case2", "This is Case 2") )
|
("test", "Case2", "This is Case 2") )
|
||||||
keys = "test\t1\n"
|
keys = "test" + EX + "1\n"
|
||||||
wanted = "Case1"
|
wanted = "Case1"
|
||||||
class Multiple_SimpleCaseSelectSecond_ECR(_VimTest):
|
class Multiple_SimpleCaseSelectSecond_ECR(_VimTest):
|
||||||
snippets = ( ("test", "Case1", "This is Case 1"),
|
snippets = ( ("test", "Case1", "This is Case 1"),
|
||||||
("test", "Case2", "This is Case 2") )
|
("test", "Case2", "This is Case 2") )
|
||||||
keys = "test\t2\n"
|
keys = "test" + EX + "2\n"
|
||||||
wanted = "Case2"
|
wanted = "Case2"
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
@ -655,10 +669,23 @@ if __name__ == '__main__':
|
|||||||
all_test_suites = test_loader.loadTestsFromModule(__import__("test"))
|
all_test_suites = test_loader.loadTestsFromModule(__import__("test"))
|
||||||
|
|
||||||
# Send some mappings to vim
|
# Send some mappings to vim
|
||||||
|
send(":imapclear\n", options.session)
|
||||||
|
send(":smapclear\n", options.session)
|
||||||
|
|
||||||
|
send(":inoremap <Tab> <C-R>=PyVimSnips_ExpandSnippet()<cr>\n",
|
||||||
|
options.session)
|
||||||
|
send(":snoremap <Tab> <Esc>:call PyVimSnips_ExpandSnippet()<cr>\n",
|
||||||
|
options.session)
|
||||||
send(":inoremap + <C-R>=PyVimSnips_JumpBackwards()<cr>\n", options.session)
|
send(":inoremap + <C-R>=PyVimSnips_JumpBackwards()<cr>\n", options.session)
|
||||||
send(":snoremap + <Esc>:call PyVimSnips_JumpBackwards()<cr>\n",
|
send(":snoremap + <Esc>:call PyVimSnips_JumpBackwards()<cr>\n",
|
||||||
options.session)
|
options.session)
|
||||||
|
send(":inoremap ? <C-R>=PyVimSnips_JumpForwards()<cr>\n", options.session)
|
||||||
|
send(":snoremap ? <Esc>:call PyVimSnips_JumpForwards()<cr>\n",
|
||||||
|
options.session)
|
||||||
|
|
||||||
|
# Mandatory remapping
|
||||||
|
send(":snoremap <BS> <Esc>:py PySnipSnippets." \
|
||||||
|
"backspace_while_selected()<cr>\n", options.session)
|
||||||
|
|
||||||
# Inform all test case which screen session to use
|
# Inform all test case which screen session to use
|
||||||
suite = unittest.TestSuite()
|
suite = unittest.TestSuite()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user