diff --git a/README.md b/README.md index 18d8c26..9a724c4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# VIM Table Mode v4.7.1 [![Build Status](https://travis-ci.org/dhruvasagar/vim-table-mode.png?branch=master)](https://travis-ci.org/dhruvasagar/vim-table-mode) +# VIM Table Mode v4.7.1.1 [![Build Status](https://travis-ci.org/dhruvasagar/vim-table-mode.png?branch=master)](https://travis-ci.org/dhruvasagar/vim-table-mode) An awesome automatic table creator & formatter allowing one to create neat tables as you type. diff --git a/doc/table-mode.txt b/doc/table-mode.txt index dbaa4e5..ba094fd 100644 --- a/doc/table-mode.txt +++ b/doc/table-mode.txt @@ -1,7 +1,7 @@ *table-mode.txt* Table Mode for easy table formatting =============================================================================== Table Mode, THE AWESOME AUTOMATIC TABLE CREATOR & FORMATTER - VERSION 4.7.1 + VERSION 4.7.1.1 Author: Dhruva Sagar License: MIT @@ -356,7 +356,9 @@ g:table_mode_update_time *table-mode-update-time* < g:table_mode_disable_tableize_mappings *table-mode-disable-tableize-mappings* - Disables mappings for tableize + Disables mappings for tableize. > + let g:table_mode_disable_tableize_mappings = 0 +< =============================================================================== MAPPINGS *table-mode-mappings* diff --git a/plugin/table-mode.vim b/plugin/table-mode.vim index 90d7c86..de11361 100644 --- a/plugin/table-mode.vim +++ b/plugin/table-mode.vim @@ -115,7 +115,7 @@ nnoremap (table-mode-echo-cell) :call TableEchoCell() nnoremap (table-mode-sort) :call tablemode#spreadsheet#Sort('') -if !g:table_mode_disable_tableize_mappings +if !g:table_mode_disable_tableize_mappings if !hasmapto('(table-mode-tableize)') exec "nmap" g:table_mode_tableize_map "(table-mode-tableize)" exec "xmap" g:table_mode_tableize_map "(table-mode-tableize)"