diff options
author | Vincent Driessen <vincent@3rdcloud.com> | 2013-03-30 01:42:47 -0700 |
---|---|---|
committer | Vincent Driessen <vincent@3rdcloud.com> | 2013-03-30 01:42:47 -0700 |
commit | 72bb0d5b872b8963860a47dd06c4e654270e9589 (patch) | |
tree | b9fa5a611da6167a131cfb6e8f7765b35802dc17 | |
parent | 381f5dd69905ad1497bb1943070fcc089b89f93b (diff) | |
parent | 18a7de511c6b53538e56a49c44e1812f6a9bdc17 (diff) | |
download | vim-rst-tables-72bb0d5b872b8963860a47dd06c4e654270e9589.tar.gz vim-rst-tables-72bb0d5b872b8963860a47dd06c4e654270e9589.tar.bz2 vim-rst-tables-72bb0d5b872b8963860a47dd06c4e654270e9589.zip |
Merge pull request #14 from insanum/master
when modifying a table maintain its current indentation
-rw-r--r-- | ftplugin/rst_tables.vim | 22 | ||||
-rw-r--r-- | src/rst_tables.py | 22 |
2 files changed, 24 insertions, 20 deletions
diff --git a/ftplugin/rst_tables.vim b/ftplugin/rst_tables.vim index a77bafe..f17eba2 100644 --- a/ftplugin/rst_tables.vim +++ b/ftplugin/rst_tables.vim @@ -43,7 +43,9 @@ def get_table_bounds(): else: lower -= 1 - return (upper, lower) + match = re.match('^(\s*).*$', vim.current.buffer[upper-1]) + + return (upper, lower, match.group(1)) def join_rows(rows, sep='\n'): """Given a list of rows (a list of lists) this function returns a @@ -244,7 +246,7 @@ def reflow_row_contents(row, widths): return new_row -def draw_table(table, manual_widths=None): +def draw_table(indent, table, manual_widths=None): if table == []: return [] @@ -258,7 +260,7 @@ def draw_table(table, manual_widths=None): header_line = table_line(sep_col_widths, header=True) normal_line = table_line(sep_col_widths, header=False) - output = [normal_line] + output = [indent+normal_line] first = True for row in table: @@ -270,34 +272,34 @@ def draw_table(table, manual_widths=None): # draw the lines (num_lines) for this row for row_line in row_lines: row_line = pad_fields(row_line, col_widths) - output.append("|".join([''] + row_line + [''])) + output.append(indent+"|".join([''] + row_line + [''])) # then, draw the separator if first: - output.append(header_line) + output.append(indent+header_line) first = False else: - output.append(normal_line) + output.append(indent+normal_line) return output @bridged def reformat_table(): - upper, lower = get_table_bounds() + upper, lower, indent = get_table_bounds() slice = vim.current.buffer[upper - 1:lower] table = parse_table(slice) - slice = draw_table(table) + slice = draw_table(indent, table) vim.current.buffer[upper - 1:lower] = slice @bridged def reflow_table(): - upper, lower = get_table_bounds() + upper, lower, indent = get_table_bounds() slice = vim.current.buffer[upper - 1:lower] widths = get_column_widths_from_border_spec(slice) table = parse_table(slice) - slice = draw_table(table, widths) + slice = draw_table(indent, table, widths) vim.current.buffer[upper - 1:lower] = slice endpython diff --git a/src/rst_tables.py b/src/rst_tables.py index 1cae9a9..50f5b3b 100644 --- a/src/rst_tables.py +++ b/src/rst_tables.py @@ -23,7 +23,9 @@ def get_table_bounds(): else: lower -= 1 - return (upper, lower) + match = re.match('^(\s*).*$', vim.current.buffer[upper-1]) + + return (upper, lower, match.group(1)) def join_rows(rows, sep='\n'): """Given a list of rows (a list of lists) this function returns a @@ -215,7 +217,7 @@ def reflow_row_contents(row, widths): return new_row -def draw_table(table, manual_widths=None): +def draw_table(indent, table, manual_widths=None): if table == []: return [] @@ -229,7 +231,7 @@ def draw_table(table, manual_widths=None): header_line = table_line(sep_col_widths, header=True) normal_line = table_line(sep_col_widths, header=False) - output = [normal_line] + output = [indent+normal_line] first = True for row in table: @@ -241,32 +243,32 @@ def draw_table(table, manual_widths=None): # draw the lines (num_lines) for this row for row_line in row_lines: row_line = pad_fields(row_line, col_widths) - output.append("|".join([''] + row_line + [''])) + output.append(indent+"|".join([''] + row_line + [''])) # then, draw the separator if first: - output.append(header_line) + output.append(indent+header_line) first = False else: - output.append(normal_line) + output.append(indent+normal_line) return output @bridged def reformat_table(): - upper, lower = get_table_bounds() + upper, lower, indent = get_table_bounds() slice = vim.current.buffer[upper - 1:lower] table = parse_table(slice) - slice = draw_table(table) + slice = draw_table(indent, table) vim.current.buffer[upper - 1:lower] = slice @bridged def reflow_table(): - upper, lower = get_table_bounds() + upper, lower, indent = get_table_bounds() slice = vim.current.buffer[upper - 1:lower] widths = get_column_widths_from_border_spec(slice) table = parse_table(slice) - slice = draw_table(table, widths) + slice = draw_table(indent, table, widths) vim.current.buffer[upper - 1:lower] = slice |