[bot] Auto-update (#14398)

* documentation formatting: Sat Mar 13 23:53:10 UTC 2021

* Built-in files auto-update: Sat Mar 13 23:51:34 UTC 2021
This commit is contained in:
emacspace 2021-03-13 18:57:56 -05:00 committed by GitHub
parent c4ed6b5d0a
commit 13791616c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 45 additions and 30 deletions

View file

@ -1,6 +1,6 @@
;;; quelpa.el --- Emacs Lisp packages built directly from source ;;; quelpa.el --- Emacs Lisp packages built directly from source
;; Copyright 2014-2018, Steckerhalter ;; Copyright 2014-2021, Steckerhalter
;; Copyright 2014-2015, Vasilij Schneidermann <v.schneidermann@gmail.com> ;; Copyright 2014-2015, Vasilij Schneidermann <v.schneidermann@gmail.com>
;; Author: steckerhalter ;; Author: steckerhalter
@ -155,12 +155,19 @@ quelpa cache."
:group 'quelpa :group 'quelpa
:type 'boolean) :type 'boolean)
(defcustom quelpa-git-clone-depth 1 (defcustom quelpa-git-clone-depth nil
"If non-nil shallow clone quelpa git recipes." "If non-nil shallow clone quelpa git recipes."
:group 'quelpa :group 'quelpa
:type '(choice (const :tag "Don't shallow clone" nil) :type '(choice (const :tag "Don't shallow clone" nil)
(integer :tag "Depth"))) (integer :tag "Depth")))
(defcustom quelpa-git-clone-partial :blobless
"If non-nil partially clone quelpa git recipes."
:group 'quelpa
:type '(choice (const :tag "Don't partially clone" nil)
(const :tag "Blobless clone" :blobless)
(const :tag "Treeless clone" :treeless)))
(defcustom quelpa-upgrade-interval nil (defcustom quelpa-upgrade-interval nil
"Interval in days for `quelpa-upgrade-all-maybe'." "Interval in days for `quelpa-upgrade-all-maybe'."
:group 'quelpa :group 'quelpa
@ -901,6 +908,7 @@ Return a cons cell whose `car' is the root and whose `cdr' is the repository."
(when-let ((branch (plist-get config :branch))) (when-let ((branch (plist-get config :branch)))
(concat remote "/" branch)))) (concat remote "/" branch))))
(depth (or (plist-get config :depth) quelpa-git-clone-depth)) (depth (or (plist-get config :depth) quelpa-git-clone-depth))
(partial (or (plist-get config :partial) quelpa-git-clone-partial))
(force (plist-get config :force)) (force (plist-get config :force))
(use-current-ref (plist-get config :use-current-ref))) (use-current-ref (plist-get config :use-current-ref)))
(when (string-match (rx bos "file://" (group (1+ anything))) repo) (when (string-match (rx bos "file://" (group (1+ anything))) repo)
@ -922,6 +930,9 @@ Return a cons cell whose `car' is the root and whose `cdr' is the repository."
(append (append
`(nil "git" "clone" ,repo ,dir) `(nil "git" "clone" ,repo ,dir)
`("--origin" ,remote) `("--origin" ,remote)
(pcase partial
(:blobless `("--filter=blob:none"))
(:treeless `("--filter=tree:0")))
(when (and depth (not (plist-get config :commit))) (when (and depth (not (plist-get config :commit)))
`("--depth" ,(int-to-string depth) `("--depth" ,(int-to-string depth)
"--no-single-branch")) "--no-single-branch"))
@ -1706,7 +1717,7 @@ When FORCE is non-nil we will always update MELPA regrdless of
(condition-case err (condition-case err
(quelpa-build--checkout-git (quelpa-build--checkout-git
'package-build 'package-build
`(:url ,quelpa-melpa-repo-url :files ("*")) `(:url ,quelpa-melpa-repo-url :files ("*") :partial :treeless)
quelpa-melpa-dir) quelpa-melpa-dir)
(error "Failed to checkout melpa git repo: `%s'" (error-message-string err))))) (error "Failed to checkout melpa git repo: `%s'" (error-message-string err)))))

View file

@ -3039,13 +3039,13 @@ Text related commands (start with ~x~):
**** Drag stuff transient state **** Drag stuff transient state
The drag stuff transient state is opened with ~SPC x .~: The drag stuff transient state is opened with ~SPC x .~:
| Key binding | Description | | Key binding | Description |
|-------------------+-----------------------------| |-------------------+-----------------------------|
| ~k~, ~K~, ~Up~ | drag up | | ~k~, ~K~, ~Up~ | drag up |
| ~j~, ~J~, ~Down~ | drag down | | ~j~, ~J~, ~Down~ | drag down |
| ~h~, ~H~, ~Left~ | drag left (word or region) | | ~h~, ~H~, ~Left~ | drag left (word or region) |
| ~l~, ~L~, ~Right~ | drag right (word or region) | | ~l~, ~L~, ~Right~ | drag right (word or region) |
| ~q~ | quit transient state | | ~q~ | quit transient state |
*** Text insertion commands *** Text insertion commands
Text insertion commands (start with ~i~): Text insertion commands (start with ~i~):

View file

@ -74,7 +74,7 @@ LSP layer. Also it is advisable to have a look
at the autocomplete layer for an optimal at the autocomplete layer for an optimal
intellisense config for LSP. intellisense config for LSP.
NOTE: The build on https://github.com/prominic/groovy-language-server will generate two jar files. You will need the ~groovy-language-server-all.jar~ as the ~groovy-lsp-jar-path~. NOTE: The build on [[https://github.com/prominic/groovy-language-server]] will generate two jar files. You will need the ~groovy-language-server-all.jar~ as the ~groovy-lsp-jar-path~.
* Key bindings * Key bindings
** Imports ** Imports

View file

@ -88,8 +88,9 @@ Tips:
~SPC m s b~) This command trims the blank parts of the ~SPC m s b~) This command trims the blank parts of the
lateral margins, making the useful portion larger. lateral margins, making the useful portion larger.
- The layer uses the package [[https://github.com/007kevin/pdf-view-restore][pdf-view-restore]] to store and restore last-visited - The layer uses the package [[https://github.com/007kevin/pdf-view-restore][pdf-view-restore]] to store and restore last-visited
pages. By default the information is stored in the directory of the viewed pages. By default the information is stored in the directory of the viewed
document (so it can get lost if you use e.g. [[https://calibre-ebook.com/][Calibre]]/[[https://github.com/chenyanming/calibredb.el][calibredb.el]] for your document (so it can get lost if you use e.g. [[https://calibre-ebook.com/][Calibre]] / [[https://github.com/chenyanming/calibredb.el][calibredb.el]] for your
document management). If you would like the information to get stored in a document management). If you would like the information to get stored in a
different location then [[https://github.com/chenyanming/calibredb.el][set the variable]] =pdf-view-restore-filename= to the path different location then [[https://github.com/chenyanming/calibredb.el][set the variable]] =pdf-view-restore-filename= to the path
of the filename to use. Alternatively you can (additionally) use Emacs its of the filename to use. Alternatively you can (additionally) use Emacs its

View file

@ -773,6 +773,7 @@ controls indentation based on parentheses or vice versa.
Features: Features:
- Automatic management of parenthesis in clojure, emacs lisp, common-lisp and scheme following the parinfer editing paradigm. - Automatic management of parenthesis in clojure, emacs lisp, common-lisp and scheme following the parinfer editing paradigm.
- Powered by a native library in the background
** Spacemacs-completion ** Spacemacs-completion
[[file:+spacemacs/spacemacs-completion/README.org][+spacemacs/spacemacs-completion/README.org]] [[file:+spacemacs/spacemacs-completion/README.org][+spacemacs/spacemacs-completion/README.org]]
@ -838,27 +839,29 @@ Features:
This layer adds packages to improve editing with Spacemacs. This layer adds packages to improve editing with Spacemacs.
Features: Features:
- Support for automatic indentation of code via =aggressive-indent=. - Support for automatic indentation of code via [[https://github.com/Malabarba/aggressive-indent-mode][=aggressive-indent=]].
- Support for jumping to chars using a decision tree via =avy=. - Support for jumping to chars using a decision tree via [[https://github.com/abo-abo/avy][=avy=]].
- Improvements for evaluating sexps via =eval-sexp-fu=. - Improvements for evaluating sexps via [[https://github.com/hchbaw/eval-sexp-fu.el/tree/36d2fe3bcf602e15ca10a7f487da103515ef391a][=eval-sexp-fu=]].
- Selecting and editing of multiple text elements via =expand-region=. - Selecting and editing of multiple text elements via [[https://github.com/magnars/expand-region.el][=expand-region=]].
- Support for editing files in hex format via =hexl=. - Support for editing files in hex format via [[https://github.com/emacs-mirror/emacs/blob/master/lisp/hexl.el][=hexl=]].
- Deletion of consecutive horizontal whitespace with a single key - Deletion of consecutive horizontal whitespace with a single key
via =hungry-delete=. via [[https://github.com/nflath/hungry-delete][=hungry-delete=]].
- Support for selecting, copying and opening links using =avy= via =link-hint=. - Support for selecting, copying and opening links using [[https://github.com/abo-abo/avy][=avy=]] via [[https://github.com/noctuid/link-hint.el][=link-hint=]].
- Adding of sample text via =lorem-ipsum=. - Adding of sample text via [[https://github.com/jschaf/emacs-lorem-ipsum][=lorem-ipsum=]].
- Transient state for moving text via =move-text=. - Transient state for moving text via [[https://github.com/emacsfodder/move-text][=move-text=]].
- Support for folding of code via =origami= and =evil-vimish-fold=. - Support for folding of code via [[https://github.com/gregsexton/origami.el][=origami=]] and [[https://github.com/alexmurray/evil-vimish-fold][=evil-vimish-fold=]].
- Support for password generation via =password-generator=. - Support for password generation via [[https://github.com/vandrlexay/emacs-password-genarator][=password-generator=]].
- Support for improving parenthesis handling via =smartparens=. - Support for improving parenthesis handling via [[https://github.com/Fuco1/smartparens][=smartparens=]].
- Automatic whitespace cleanup on save via =spacemacs-whitespace-cleanup=. - Automatic whitespace cleanup on save via =spacemacs-whitespace-cleanup=.
- Support for converting definitions to certain styles via =string-inflection=. - Support for converting definitions to certain styles via [[https://github.com/akicho8/string-inflection][=string-inflection=]].
- Support for generating UUIDs via =uuidgen=. - Support for generating UUIDs via [[https://github.com/kanru/uuidgen-el][=uuidgen=]].
- Support for conversion between Emacs regexps and PCRE regexps. - Support for conversion between Emacs regexps and PCRE regexps.
- Support for persistent scratch via =persistent-scratch=. - Support for persistent scratch via [[https://github.com/Fanael/persistent-scratch][=persistent-scratch=]].
- Support for unkillable scratch via =unkillable-scratch=. - Support for unkillable scratch via [[https://github.com/EricCrosson/unkillable-scratch][=unkillable-scratch=]].
- In =dired-mode=, press ~Shift S~ to select sorting. - Support for sorting (press ~s~) via [[https://gitlab.com/xuhdev/dired-quick-sort][=dired-quick-sort=]]
- Support for =evil-easymotion= if the editing style is =vim= or =hybrid=. - Support for [[https://github.com/PythonNut/evil-easymotion][=evil-easymotion=]] if the editing style is =vim= or =hybrid=.
- Support for cycling between multi line block styles via [[https://github.com/IvanMalison/multi-line/][=multi-line=]].
- Support for editing strings inplace via [[https://github.com/magnars/string-edit.el][=string-edit=]]
** Spacemacs-editing-visual ** Spacemacs-editing-visual
[[file:+spacemacs/spacemacs-editing-visual/README.org][+spacemacs/spacemacs-editing-visual/README.org]] [[file:+spacemacs/spacemacs-editing-visual/README.org][+spacemacs/spacemacs-editing-visual/README.org]]