Home | History | Annotate | Download | only in clang-format

Lines Matching refs:lines

17 # You can also pass in the variable "l:lines" to choose the range for
22 # : let l:lines="all"
56 if vim.eval('exists("l:lines")') == '1':
57 lines = vim.eval('l:lines')
59 lines = '%s:%s' % (vim.current.range.start + 1, vim.current.range.end + 1)
76 if lines != 'all':
77 command.extend(['-lines', lines])
95 lines = stdout.split('\n')
96 output = json.loads(lines[0])
97 lines = lines[1:]
98 sequence = difflib.SequenceMatcher(None, vim.current.buffer, lines)
101 vim.current.buffer[op[1]:op[2]] = lines[op[3]:op[4]]