Skip to content

Commit cf85392

Browse files
author
SpacemacsBot
committed
[bot] "documentation_updates" Thu Jan 30 18:48:37 UTC 2025
1 parent c27f0a0 commit cf85392

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

COMMUNITY.org

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,13 @@ part in Spacemacs is the evil mode :-)
5555

5656
** Guidelines
5757
These guidelines apply to all collaborators of the project, namely:
58-
5958
- [[https://github.com/syl20bnr][@syl20bnr]]
6059
- [[https://github.com/JAremko][@JAremko]]
6160
- [[https://github.com/smile13241324][@smile13241324]]
6261
- [[https://github.com/bcc32][@bcc32]]
6362
- [[https://github.com/fnussbaum][@fnussbaum]]
6463

6564
And they applied to all former collaborators during their period of activity:
66-
6765
- [[https://github.com/lebensterben][@lebensterben]]
6866
- [[https://github.com/bmag][@bmag]]
6967
- [[https://github.com/duianto][@duianto]]
@@ -138,4 +136,3 @@ moderation actions have been taken:
138136
|------------+-----------+--------+-------+-----------------------------------------------------------------|
139137
| 2016/01/27 | syl20bnr | lock | #3484 | comments judged to be offending towards the Spacemacs community |
140138
| 2016/01/27 | syl20bnr | unlock | #3484 | let's make it happen, i.e. this document |
141-

CONTRIBUTING.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ To add tests for a layer, do the following:
368368
functional tests. Look at existing tests for clues.
369369
4. Write a =Makefile= in that folder. It should define three variables.
370370
- =LOAD_FILES= :: a list of additional files to load before testing (relative
371-
to the root Spacemacs folder). This should typically be =init.el=.
371+
to the root Spacemacs folder). This should typically be =init.el=.
372372
- =UNIT_TEST_FILES= :: a list of unit test files in the current folder.
373373
- =FUNC_TEST_FILES= :: a list of functional test files in the current folder.
374374

doc/DOCUMENTATION.org

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,11 +1210,12 @@ You can cycle between the themes declared in =dotspacemacs-themes= with
12101210
For an external theme from a package, please add the theme and its package into
12111211
the =dotspacemacs-themes=, then the Spacemacs will install the package and apply
12121212
the theme. Here is an example:
1213-
#+begin_src emacs-lisp
1213+
1214+
#+BEGIN_SRC emacs-lisp
12141215
(setq-default dotspacemacs-themes
12151216
'((humanoid-light :package humanoid-themes)
12161217
spacemacs-dark))
1217-
#+end_src
1218+
#+END_SRC
12181219

12191220
*** Browsing themes
12201221
You can see samples of all themes included in the =themes-megapack= layer

doc/LAYERS.org

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ layers with descriptions see [[https://spacemacs.org/layers/LAYERS.html][Spacema
4141
* Nomenclature
4242
Layers and packages. What gives?
4343
- Package :: A set of Emacs Lisp files that, taken together, provide some
44-
feature. Packages may be available on a package repository, such as ELPA or
45-
MELPA or on a third-party service provider (such as github) or even
46-
locally on the disk.
44+
feature. Packages may be available on a package repository, such as ELPA or
45+
MELPA or on a third-party service provider (such as github) or even
46+
locally on the disk.
4747
- Layer :: A collected unit of configuration that can be enabled (or disabled)
48-
in Spacemacs. A layer typically brings together one or more packages, as
49-
well as the glue configuration code required to make them play well with
50-
each other and Spacemacs in general.
48+
in Spacemacs. A layer typically brings together one or more packages, as
49+
well as the glue configuration code required to make them play well with
50+
each other and Spacemacs in general.
5151

5252
Before writing a layer, it is helpful to consider what you are trying to
5353
achieve. Is there a package that provides the functionality you are after, and

layers/+emacs/org/README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,10 +442,10 @@ the build in =project.el= alternative.
442442
(setq-default dotspacemacs-configuration-layers
443443
'((org :variables org-project-capture-projects-file "TODOs.org")))
444444
#+END_SRC
445+
445446
You can also pass a function as `org-project-capture-projects-file`. This allows you to
446447
set file name based on project
447448

448-
449449
#+BEGIN_SRC emacs-lisp
450450
(setq-default dotspacemacs-configuration-layers
451451
'((org :variables org-project-capture-projects-file '(lambda (arg) (concat (projectile-project-name) ".org")))))

layers/+email/gnus/README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gnus is a news reading application. The Gnus terminology can be confusing for
3333
new users so the basics are listed here:
3434
- Group :: A Newsgroup but can also be a RSS Feed or a mail directory
3535
- Topic :: Newsgroups can be assigned to topics which will be used to structure
36-
the Group Buffer if Topic Mode is enabled(default).
36+
the Group Buffer if Topic Mode is enabled(default).
3737

3838
* Adding news sources
3939
Adding news sources can be done in your =.spacemacs= file by adding the

layers/+lang/python/README.org

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,13 +322,15 @@ The importmagic is a heavy feature, will take time to prepare the background
322322
server, especially slow with =ipython= or =ipython3=, set the
323323
=importmagic-python-interpreter= to =python= or =python3= (if it is the
324324
interpreter of ipython) will have performance benefit. Fox example:
325+
325326
#+BEGIN_SRC elisp
326327
(setq-default dotspacemacs-configuration-layers
327328
'((python :variables importmagic-python-interpreter "python3")))
328329
#+END_SRC
329330

330331
To disable the importmagic, set the =python-enable-importmagic= in the python
331332
layer config section:
333+
332334
#+BEGIN_SRC elisp
333335
(setq-default dotspacemacs-configuration-layers
334336
'((python :variables python-enable-importmagic nil)))

layers/+tools/lsp/README.org

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,11 @@ To make ~company~ provide completion candidates from ~company-capf~ combined wit
189189
example, you can set it like this in your ~dotspacemacs/user-config~:
190190

191191
#+BEGIN_SRC emacs-lisp
192-
(add-hook 'go-mode-hook
193-
(lambda ()
194-
(setq-local company-backends '(:separate company-capf company-files company-yasnippet))))
192+
(add-hook 'go-mode-hook
193+
(lambda ()
194+
(setq-local company-backends '(:separate company-capf company-files company-yasnippet))))
195195
#+END_SRC
196196

197-
198197
* Key bindings
199198
A number of lsp features useful for all/most modes have been bound to the lsp minor mode, meaning they'll be
200199
available in all language layers based on the lsp layer.
@@ -244,7 +243,7 @@ The lsp minor mode bindings are:
244243
| ~SPC m g r~ | find references (=xref= / =lsp=) |
245244
| ~SPC m g s~ | find symbol in project (=helm-lsp=) |
246245
| ~SPC m g S~ | find symbol in all projects (=helm-lsp=) |
247-
| ~SPC m g p~ | goto previous (~xref-go-back~) |
246+
| ~SPC m g p~ | goto previous (~xref-go-back~) |
248247
|---------------+----------------------------------------------------------------------------------|
249248
| Note | /Omitted when ~lsp-navigation~ is ~'peek~ or ~'simple~ / |
250249
| | /Bound under ~SPC m g~ rather than ~SPC m G~ when ~lsp-navigation~ == ~'peek~/ |

layers/LAYERS.org

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ THIS FILE IS AUTO-GENERATED!
284284
Don't edit it directly. See [[https://github.com/syl20bnr/spacemacs/blob/develop/CONTRIBUTING.org#readmeorg-tags]["README.org tags" section of CONTRIBUTING.org for the instructions]].
285285

286286
This is an overview of Spacemacs configuration layers. For information about
287-
configuration layer development see [[https://spacemacs.org/doc/LAYERS.html][Configuration layers development]].
287+
configuration layer development see [[https://develop.spacemacs.org/doc/LAYERS.html][Configuration layers development]].
288288

289289
* Chats
290290
** ERC
@@ -849,6 +849,7 @@ Features:
849849
- occur-mode
850850
- package-menu
851851
- page-break-lines
852+
- proced
852853
- process-menu
853854
- quickrun
854855
- recentf
@@ -891,8 +892,8 @@ Features:
891892
- Support for sorting (press ~s~) via [[https://gitlab.com/xuhdev/dired-quick-sort][=dired-quick-sort=]]
892893
- Support for [[https://github.com/PythonNut/evil-easymotion][=evil-easymotion=]] if the editing style is =vim= or =hybrid=.
893894
- Support for cycling between multi line block styles via [[https://github.com/IvanMalison/multi-line/][=multi-line=]].
894-
- Support for editing strings inplace via [[https://github.com/magnars/string-edit.el][=string-edit=]]
895-
- Presents undo history as a tree via [[https://gitlab.com/tsc25/undo-tree/-/blob/master/undo-tree.el][=undo-tree=]]
895+
- Support for editing strings inplace via [[https://github.com/magnars/string-edit.el][=string-edit=]].
896+
- Presents undo history as a tree via [[https://github.com/casouri/vundo][=vundo=]] or [[https://gitlab.com/tsc25/undo-tree/-/blob/master/undo-tree.el][=undo-tree=]].
896897

897898
** Spacemacs-editing-visual
898899
[[file:+spacemacs/spacemacs-editing-visual/README.org][+spacemacs/spacemacs-editing-visual/README.org]]

0 commit comments

Comments
 (0)