-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
135 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#+options: author:nil date:nil timestamp:nil | ||
#+title: ssh-config support for Emacs | ||
#+export: org-org-export-to-org | ||
#+export_file_name: ../README.org | ||
* ssh-config-mode-el/README | ||
[[https://melpa.org/#/ssh-config-mode][[[https://melpa.org/#/ssh-config-mode][file:https://melpa.org/packages/ssh-config-mode-badge.svg]]]] | ||
[[https://github.com/jhgorrell/ssh-config-mode-el/actions/workflows/10-run-tests.yml][[[https://github.com/peterhoeg/ssh-config-mode-el/actions][file:https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg]]]] | ||
|
||
A mode to edit SSH config files. | ||
|
||
It does the following: | ||
|
||
- Fontifys the SSH config keywords. | ||
- Keys for skipping from host section to host section. | ||
- Indentation of configuration found in the following locations: | ||
|
||
#+begin_example | ||
.ssh/config | ||
sshd?_config | ||
known_hosts | ||
authorized_keys2? | ||
#+end_example | ||
|
||
If you have a SSH config file that you'd like to use this mode on | ||
automatically, add this line as the first one in the file: | ||
|
||
#+begin_src elisp | ||
# -*- mode: ssh-config -*- | ||
#+end_src | ||
|
||
Or add somthing like this to your init file: | ||
|
||
#+begin_src elisp | ||
(add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode)) | ||
#+end_src | ||
** Links | ||
- [[https://github.com/peterhoeg/ssh-config-mode-el]] | ||
- [[https://github.com/openssh/openssh-portable]] | ||
** License | ||
=ssh-config-mode-el= is distributed under the [[https://www.gnu.org/licenses/gpl-3.0.txt][GPL-3.0]] (or any later version.) | ||
** Contributors | ||
- Eder Elorriaga | ||
- Harley Gorrell | ||
- Heinz Deinhart | ||
- iory | ||
- John Mastro | ||
- Masahiro Hayashi | ||
- Matthew Weaver | ||
- Peter Hoeg | ||
- Peter Oliver | ||
- Sharif Nassar | ||
- Ted Carnahan | ||
- USAMI Kenta | ||
- Ville Skyttä | ||
- Wieland Hoffmann | ||
- Александар Симић |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#+TITLE: ssh-config support for Emacs | ||
#+OPTIONS: author:nil date:nil timestamp:nil | ||
#+EXPORT: org-org-export-to-org | ||
#+EXPORT_FILE_NAME: ../README.org | ||
|
||
* ssh-config-mode-el/README | ||
:PROPERTIES: | ||
:CUSTOM_ID: ssh-config-mode-elreadme | ||
:END: | ||
[[https://melpa.org/#/ssh-config-mode][[[https://melpa.org/#/ssh-config-mode][file:https://melpa.org/packages/ssh-config-mode-badge.svg]]]] | ||
[[https://github.com/jhgorrell/ssh-config-mode-el/actions/workflows/10-run-tests.yml][[[https://github.com/peterhoeg/ssh-config-mode-el/actions][file:https://github.com/peterhoeg/ssh-config-mode-el/actions/workflows/10-run-tests.yml/badge.svg]]]] | ||
|
||
A mode to edit SSH config files. | ||
|
||
It does the following: | ||
|
||
- Fontifys the SSH config keywords. | ||
- Keys for skipping from host section to host section. | ||
- Indentation of configuration found in the following locations: | ||
|
||
#+begin_example | ||
.ssh/config | ||
sshd?_config | ||
known_hosts | ||
authorized_keys2? | ||
#+end_example | ||
|
||
If you have a SSH config file that you'd like to use this mode on | ||
automatically, add this line as the first one in the file: | ||
|
||
#+begin_src elisp | ||
# -*- mode: ssh-config -*- | ||
#+end_src | ||
|
||
Or add somthing like this to your init file: | ||
|
||
#+begin_src elisp | ||
(add-to-list 'auto-mode-alist '("/path-to-your-ssh/config\\'" . ssh-config-mode)) | ||
#+end_src | ||
|
||
** Links | ||
:PROPERTIES: | ||
:CUSTOM_ID: links | ||
:END: | ||
|
||
- [[https://github.com/peterhoeg/ssh-config-mode-el]] | ||
- [[https://github.com/openssh/openssh-portable]] | ||
|
||
** License | ||
:PROPERTIES: | ||
:CUSTOM_ID: license | ||
:END: | ||
|
||
=ssh-config-mode-el= is distributed under the [[https://www.gnu.org/licenses/gpl-3.0.txt][GPL-3.0]] (or any later version.) | ||
|
||
** Contributors | ||
:PROPERTIES: | ||
:CUSTOM_ID: contributors | ||
:END: | ||
|
||
#+INCLUDE: contributors.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
- Eder Elorriaga | ||
- Harley Gorrell | ||
- Heinz Deinhart | ||
- iory | ||
- John Mastro | ||
- Masahiro Hayashi | ||
- Matthew Weaver | ||
- Peter Hoeg | ||
- Peter Oliver | ||
- Sharif Nassar | ||
- Ted Carnahan | ||
- USAMI Kenta | ||
- Ville Skyttä | ||
- Wieland Hoffmann | ||
- Александар Симић |