spacemacs/layers/+lang/csv
syl20bnr ebe4c60264 Revert "Defer packages by default using use-package-always-defer"
This reverts commit 29c78ce841 and all other fixes
that have been made afterwards.

The motivation is that use-package is seen by many as a replacement for
`require`. Is use-package always defer the loading of packages then is breaks
this use case, this does not respect POLA so even if it was making Spacemacs
loading faster (up to 3s faster on some startup on my machine) we just cannot
use it, it would be irresponsible. Spacemacs should be easy to use, loading
performance will come with time but it is not a priority.
2018-03-03 23:40:10 -05:00
..
img csv: defer loading, add image and author 2016-01-18 01:23:25 -05:00
packages.el Revert "Defer packages by default using use-package-always-defer" 2018-03-03 23:40:10 -05:00
README.org Fix documentation for parinfer, pdf-tools, yaml, csv and salt layer 2017-10-05 11:15:02 +03:00

CSV layer

/TakeV/spacemacs/media/commit/59e0c5683aed94f9ccc37256cafb5cebb1934275/layers/+lang/csv/img/csv.png

Description

This layer adds tools for better integration of CSV files in Spacemacs.

Features:

  • Detecting of fields for various separators
  • Aligning of fields
  • Traversal of fields
  • Killing of fields
  • Sorting of rows
  • Transposing of rows/columns
  • Intelligent yanking of fields

Install

Layer

To use this contribution add it to your ~/.spacemacs

  (setq-default dotspacemacs-configuration-layers '(csv))

Key Bindings

Key Binding Description
SPC m a Align fields
SPC m d Kill fields
SPC m i Toggle delimiter invisibility
SPC m n Move forward 1 field
SPC m p Move backwards 1 field
SPC m r Reverse region
SPC m s f Sort fields
SPC m s n Sort fields numerically
SPC m s o Toggle sort order
SPC m t Transpose
SPC m v f Paste killed fields
SPC m v t Paste killed fields as new table
SPC m u Unalign fields