powerline/tests
ZyX d392cf3322 Add support for csv files
Equivalent to airline csv Christian Brabandt plugin integration, but uses Python
own facilities.

Note: filetype detection is out of the scope of the powerline responsibilities.
      CSV is supported by powerline, but only as long as filetype detection is
      done by Vim correctly. By default CSV files are neither detected nor
      highlighted.

Some known differences between powerline code and @chrisbra plugin with
corresponding airline integration:

1. Detection work differently. I cannot say which is better because I have not
   tested it much, but it is definitely different.
2. My variant is able to detect whether there is (no) header. (Of course,
   relying on Python code.) Airline is using a setting. (Both do not allow
   manual per-filetype setting.) Of course, user can force either variant (no
   headers at all or headers always).
3. My variant makes it possible to configure header output format, including
   truncating it at 15 characters (the default).
4. CSV plugin does not work with multiline CSV items (in some dialects one can
   use code like `abc;"I<CR>am<CR>multiline<CR>string"`). See `:h csv-column` on
   how to fix this if possible (will require also changing `<sid>WColumn`
   function because currently it only works with one line).
5. AFAIK Python does not such a thing as “fixed width CSV”. Thus I do not work
   with this, but CSV plugin does. Not sure whether it is different with
   space-separated CSV files though.
2014-11-09 23:54:49 +03:00
..
lib Refactor weather segment to use KwThreaded segment 2014-09-20 13:52:24 +04:00
path Unify imports 2014-09-01 00:25:24 +04:00
test_shells Specify $TERM in place of assuming it is set to something working 2014-10-12 00:41:06 +04:00
__init__.py Unify imports 2014-09-01 00:25:24 +04:00
empty Start adding tests 2013-03-03 21:03:19 +01:00
install.sh Add internal_ip segment 2014-08-24 01:20:25 +04:00
matchers.py Unify imports 2014-09-01 00:25:24 +04:00
run_daemon_tests.sh Include args.config_path in the key 2014-09-08 23:53:05 +04:00
run_lint_tests.sh Split shell tests into files 2014-08-29 22:22:39 +04:00
run_python_tests.sh Split shell tests into files 2014-08-29 22:22:39 +04:00
run_shell_tests.sh Split shell tests into files 2014-08-29 22:22:39 +04:00
run_vim_tests.sh Split shell tests into files 2014-08-29 22:22:39 +04:00
test.sh Split shell tests into files 2014-08-29 22:22:39 +04:00
test_cmdline.py Move all parser definitions to powerline.commands.*.get_argparser() 2014-10-25 22:03:33 +04:00
test_config_merging.py Unify imports 2014-09-01 00:25:24 +04:00
test_config_reload.py Unify imports 2014-09-01 00:25:24 +04:00
test_configuration.py Encode vim statusline to &encoding before returning 2014-09-14 14:26:42 +04:00
test_invalid_unicode.vim Add tests for invalid unicode filenames 2014-09-14 14:26:42 +04:00
test_lib.py Allow bytes paths in VCS bindings 2014-09-14 19:26:36 +04:00
test_lib_config.py Unify imports 2014-09-01 00:25:24 +04:00
test_local_overrides.vim Replace g:powerline_config_path Vim variable with …_paths list 2014-09-05 22:13:51 +04:00
test_plugin_file.vim Replace g:powerline_config_path Vim variable with …_paths list 2014-09-05 22:13:51 +04:00
test_provided_config_files.py Add support for Command-T 2014-11-09 23:54:48 +03:00
test_segments.py Add support for csv files 2014-11-09 23:54:49 +03:00
test_selectors.py Use new functionality to replace tabbuflister and single_tab segment 2014-09-05 20:00:19 +04:00
test_tabline.vim Replace g:powerline_config_path Vim variable with …_paths list 2014-09-05 22:13:51 +04:00
test_watcher.py Also catch INotifyError when testing tree watcher 2014-09-14 19:26:37 +04:00
vim.py Use proper encoding to convert values in various places 2014-09-14 14:26:42 +04:00