csv-mode-autoloads.el (2836B)
1 ;;; csv-mode-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- 2 ;; Generated by the `loaddefs-generate' function. 3 4 ;; This file is part of GNU Emacs. 5 6 ;;; Code: 7 8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path))) 9 10 11 12 ;;; Generated autoloads from csv-mode.el 13 14 (autoload 'csv-mode "csv-mode" "\ 15 Major mode for editing files of comma-separated value type. 16 17 CSV mode is derived from `text-mode', and runs `text-mode-hook' before 18 running `csv-mode-hook'. It turns `auto-fill-mode' off by default. 19 CSV mode can be customized by user options in the CSV customization 20 group. The separators are specified by the value of `csv-separators'. 21 22 CSV mode commands ignore blank lines and comment lines beginning with 23 the value of `csv-comment-start', which delimit \"paragraphs\". 24 \"Sexp\" is re-interpreted to mean \"field\", so that `forward-sexp' 25 (\\[forward-sexp]), `kill-sexp' (\\[kill-sexp]), etc. all apply to fields. 26 Standard comment commands apply, such as `comment-dwim' (\\[comment-dwim]). 27 28 If `font-lock-mode' is enabled then separators, quoted values and 29 comment lines are highlighted using respectively `csv-separator-face', 30 `font-lock-string-face' and `font-lock-comment-face'. 31 32 The user interface (UI) for CSV mode commands is similar to that of 33 the standard commands `sort-fields' and `sort-numeric-fields', except 34 that if there is no prefix argument then the UI prompts for the field 35 index or indices. In `transient-mark-mode' only: if the region is not 36 set then the UI attempts to set it to include all consecutive CSV 37 records around point, and prompts for confirmation; if there is no 38 prefix argument then the UI prompts for it, offering as a default the 39 index of the field containing point if the region was not set 40 explicitly. The region set automatically is delimited by blank lines 41 and comment lines, and the number of header lines at the beginning of 42 the region given by the value of `csv-header-lines' are skipped. 43 44 Sort order is controlled by `csv-descending'. 45 46 CSV mode provides the following specific keyboard key bindings: 47 48 \\{csv-mode-map} 49 50 (fn)" t) 51 (add-to-list 'auto-mode-alist '("\\.[Cc][Ss][Vv]\\'" . csv-mode)) 52 (add-to-list 'auto-mode-alist '("\\.tsv\\'" . tsv-mode)) 53 (autoload 'tsv-mode "csv-mode" "\ 54 Major mode for editing files of tab-separated value type. 55 56 (fn)" t) 57 (register-definition-prefixes "csv-mode" '("csv-" "tsv-")) 58 59 60 ;;; Generated autoloads from csv-mode-tests.el 61 62 (register-definition-prefixes "csv-mode-tests" '("csv-tests--")) 63 64 ;;; End of scraped data 65 66 (provide 'csv-mode-autoloads) 67 68 ;; Local Variables: 69 ;; version-control: never 70 ;; no-byte-compile: t 71 ;; no-update-autoloads: t 72 ;; no-native-compile: t 73 ;; coding: utf-8-emacs-unix 74 ;; End: 75 76 ;;; csv-mode-autoloads.el ends here