dynamotn / csv.vim

A filetype plugin of vim for csv files fork from http://vim.wikia.com/wiki/Csv

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

INTRODUCTION

A mirror of the wikia csv plugin and integrate with vim-airline

KEYBOARD

Key Mode Description
H normal Move left one column in the CSV.
J normal Move down one row in the CSV (stay in focused column).
K normal Move up one row in the CSV (stay in focused column).
L normal Move right one column in the CSV.
0 normal Move to the first column.
$ normal Move to the last column.
gm normal Jump back to focused column/row.

COMMAND

Command Description
:CsvDelimiter # Change the delimiter for a file. Takes a single character.
:CsvDeleteColumn # # Delete a specific column (first argument empty to current columnm, second is except delimiter)
:CsvSearchColumn # Search the current column.
:Csv # Highlight a specific column (0 to turn off).
:CsvHeadlingLine # Set the heading line number
:CsvSortColumn Sort by the current column. Can sort visually selected regions.
:CsvCopyColumn # # Copy a specific column to a register (first argument empty to current column, second to unamed register)
:CsvGotoColumn # Go to a specific column

VARIABLE

Variable Description Default
b:csv_heading_line_number Index of column header line in buffer 1
g:csv_show_column Show column header on status line 1
g:csv_excel_column_format Show column number by Excel format 0

About

A filetype plugin of vim for csv files fork from http://vim.wikia.com/wiki/Csv

License:GNU General Public License v3.0


Languages

Language:Vim Script 100.0%