Dhruva Sagar
0b03a88ffb
Fixed tablemode#TableMotion
2014-03-18 18:21:35 +05:30
Dhruva Sagar
8e37d67505
Fixed tablemode#TableMotion, supports [count]
2014-03-18 18:20:58 +05:30
Dhruva Sagar
f2c492fe5e
Fixes #20
...
Checking if gdefault is set and working accordingly
2014-03-12 07:52:25 +05:30
Dhruva Sagar
10ab0425f6
Fixes #17
...
Added a new configuration option g:table_mode_corner_corner to
correspond to the extreme corners of the table border, by default it is
set to '|' to maintain backward compatibility but it can be overriden to
anything else.
v3.3.3
2014-01-29 11:32:30 +05:30
Dhruva Sagar
e10a2ab4da
Updated README
2013-12-31 12:53:41 +05:30
Dhruva Sagar
496872f342
trying with <kbd>
2013-12-31 12:51:35 +05:30
Dhruva Sagar
af432f6ed5
Updated CHANGELOG
2013-12-31 12:34:42 +05:30
Dhruva Sagar
5c42d58d4b
Updated table mode
...
- Bumped version
- Added new mapping \t? to echo current cells representation for
defining formulas.
- Updated docs
v3.3.2
2013-12-31 12:30:52 +05:30
Dhruva Sagar
1302782b55
Updated vim-flavor & tests
2013-12-31 12:22:22 +05:30
Dhruva Sagar
9935e57def
Fixed motions
2013-12-11 16:15:07 +05:30
Dhruva Sagar
8993e2a454
Fixed tablemode#DeleteColumn
2013-12-11 15:50:32 +05:30
Dhruva Sagar
df41b7deff
Fixed Travis Url in README
2013-12-11 15:22:52 +05:30
Dhruva Sagar
c88a913397
Fixed tests
2013-12-11 15:21:20 +05:30
Dhruva Sagar
8609ad4778
Releasing version 3.3.1
...
* Borders are now disregarded, so add as many as you'd like.
* Improved test coverage.
2013-12-11 12:48:25 +05:30
Dhruva Sagar
535dd9601a
Fixed doc/table-mode.txt mixed indent
2013-11-13 08:49:40 +05:30
Dhruva Sagar
e94bbcc0b4
Switched to using || mapping for table border generation, more intuitive & create a minimal border on a new line without a table
v3.3
2013-11-13 08:45:15 +05:30
Dhruva Sagar
a0618db019
Fixed #14 , You can now have a top border (before header) and a bottom border as well (after last line)
v3.2.4.1
2013-11-12 19:49:10 +05:30
Dhruva Sagar
176999f347
Allowing border creation above table row
2013-10-24 16:47:15 +05:30
Dhruva Sagar
5a6a9b3473
Fixed motions to wrap around edges incorporating table header
v3.2.4
2013-10-07 15:07:55 +05:30
Dhruva Sagar
aa8817621c
Fixed doc #11
2013-09-25 09:29:37 +05:30
Dhruva Sagar
54187d0be1
Updated Header Border to be like org-mode table header separator for consistency.
v3.2.3
2013-09-19 16:53:28 +05:30
Dhruva Sagar
3e2eaeee5c
Fixed delete column api with header changes
v3.2.2
2013-09-19 15:03:13 +05:30
Dhruva Sagar
6dfc508af5
Fixed headerExpr to incorporate comments & spaces around header border
v3.2.1
2013-09-19 13:55:07 +05:30
Dhruva Sagar
ed441f19a1
Added travis status to README
2013-09-19 13:26:42 +05:30
Dhruva Sagar
e4525c465a
Fixed travis.yml file, issue with tabs
2013-09-19 13:24:20 +05:30
Dhruva Sagar
19bfa092a3
Updating CHANGELOG
2013-09-19 13:23:19 +05:30
Dhruva Sagar
f91ec2458f
Updated README & CHANGELOG
2013-09-19 12:33:28 +05:30
Dhruva Sagar
0799523ffb
Releasing v3.2
...
* Added tests to test various use cases
* Added .travis.yml for travis integration
v3.2
2013-09-19 12:28:47 +05:30
Dhruva Sagar
9875a117a7
Fixed iabbrev
v3.1.1
2013-09-19 07:04:12 +05:30
Dhruva Sagar
cca55e72ce
Releasing Table Mode v3.1
...
* Removed table border and related options. You can now optionally have
a header instead, simply add a table header and add a border to it
triggered by the vim iabbrev '+-' on the line immidiately after the
header and it will expand to the correct border. It will auto update
as the table realigns with changes. Similar approach as followed by
tables in org-mode.
* Fixed bug of incorrect indentation of a newly added formula line.
* Fixed bug in ConvertDelimiterToSeparator causing incorrect
tableization of commented blocks of delimited content.
2013-09-19 02:10:49 +05:30
Dhruva Sagar
eed25aee91
Removed unnecessary closing markers for folds
2013-06-10 09:56:54 +05:30
Dhruva Sagar
0683cec58c
Added more error checks in GetCells
2013-05-22 07:36:53 +05:30
Dhruva Sagar
27544e168a
Fixed s:Sum
...
Was previously converting to integer so loosing float data after decimal
place, converting to float instead now.
v3.0
2013-05-21 14:40:54 +05:30
Dhruva Sagar
e4af7200ff
Fixed function EvaluateExpr
...
- Added support for column references in current row when defining
formulas for individual cells.
2013-05-21 14:32:02 +05:30
Dhruva Sagar
3cea0bbaba
Minor Fixes
...
- Updated s:EndExpr() to include \s\+ within optional escaped comment so
that the space is also matched.
- Fixed Formula addition in case of double comment (start and end) are
required, eg) in c/c++.
- Parsing expr row/column numbers from string correctly.
2013-05-20 16:38:31 +05:30
Dhruva Sagar
8931891845
Updated README
2013-05-20 12:49:32 +05:30
Dhruva Sagar
0810512c54
Fixed #8
...
- Renamed option for eval_expr.
- Defined a new option `g:table_mode_map_prefix` set to `<Leader>t` by
default to be used as a prefix for all other table mode commands.
- Updated docs to reflect the same.
- Updated README.
2013-05-18 03:58:03 +05:30
Dhruva Sagar
4606d9c637
Fixed s:GetCommentEnd(), s:EndCommentExpr()
...
Also fixed s:ConvertDelimiterToSeparator() such that it doesn't mess up
the end comment and draws the border before it.
2013-05-18 03:34:02 +05:30
Dhruva Sagar
9ff1b37210
Updated README
2013-05-18 02:55:22 +05:30
Dhruva Sagar
287f45cfa2
Updated README
2013-05-17 17:32:30 +05:30
Dhruva Sagar
1ce3ec4e7f
Fixed Table Mode
...
- Several New Updates weren't working properly for commented tables.
Fixed & improved the API to work accurately for commented tables.
2013-05-17 17:13:56 +05:30
Dhruva Sagar
34e271b24a
Updated README, fixed expr evaluator
2013-05-17 14:12:44 +05:30
Dhruva Sagar
d0d9d1d4f6
Updated README.md
...
- Removed requirement of dependence on Tabular since table-mode is no
longer dependent on the same.
2013-05-17 10:29:03 +05:30
Dhruva Sagar
41fa837437
Updated README.md
...
- Added another example expression.
2013-05-17 10:26:38 +05:30
Dhruva Sagar
fb63484e47
Updated CHANGELOG & doc/table-mode.txt
2013-05-17 10:00:00 +05:30
Dhruva Sagar
51c108188c
Updated README.md
2013-05-17 09:34:19 +05:30
Dhruva Sagar
974d506484
Merge branch 'feature/table-formulas'
2013-05-17 07:48:38 +05:30
Dhruva Sagar
dd38fcfeeb
Releasing v3.0
...
- Added feature to define & add formula expressions to table and
calculate them.
- Persist the fomulas as comments as line right after table.
2013-05-17 07:45:49 +05:30
Dhruva Sagar
94a76dc0f7
Merge branch 'master' of github.com:dhruvasagar/vim-table-mode into feature/table-formulas
...
Conflicts:
autoload/tablemode.vim
2013-05-16 15:50:56 +05:30
Dhruva Sagar
eba2481798
Fine tuning & formatting
2013-05-16 14:49:03 +05:30