2016-01-18 06:23:25 +00:00
|
|
|
;;; packages.el --- csharp Layer packages File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2016-01-18 06:23:25 +00:00
|
|
|
;;
|
|
|
|
;; Author: William Casarin <bill@casarin.me>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-18 06:23:25 +00:00
|
|
|
|
2015-11-26 22:12:43 +00:00
|
|
|
(setq csv-packages '(csv-mode))
|
|
|
|
|
|
|
|
(defun csv/init-csv-mode ()
|
|
|
|
(use-package csv-mode
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2021-05-12 00:45:45 +00:00
|
|
|
:config
|
2016-01-18 06:23:25 +00:00
|
|
|
(progn
|
|
|
|
(spacemacs/declare-prefix-for-mode 'csv-mode "ms" "sort")
|
|
|
|
(spacemacs/declare-prefix-for-mode 'csv-mode "mv" "yank")
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'csv-mode
|
|
|
|
"a" 'csv-align-fields
|
2016-01-18 06:26:06 +00:00
|
|
|
"d" 'csv-kill-fields
|
2018-06-25 09:56:59 +00:00
|
|
|
"h" 'csv-header-line
|
2016-01-18 06:26:06 +00:00
|
|
|
"i" 'csv-toggle-invisibility
|
2016-01-18 06:23:25 +00:00
|
|
|
"n" 'csv-forward-field
|
|
|
|
"p" 'csv-backward-field
|
|
|
|
"r" 'csv-reverse-region
|
2016-01-18 06:26:06 +00:00
|
|
|
"sf" 'csv-sort-fields
|
|
|
|
"sn" 'csv-sort-numeric-fields
|
|
|
|
"so" 'csv-toggle-descending
|
|
|
|
"t" 'csv-transpose
|
|
|
|
"u" 'csv-unalign-fields
|
2016-01-18 06:23:25 +00:00
|
|
|
"vf" 'csv-yank-fields
|
2021-05-12 00:45:45 +00:00
|
|
|
"vt" 'csv-yank-as-new-table)
|
|
|
|
(spacemacs/inherit-leader-keys-from-parent-mode 'tsv-mode))))
|