Skip to content

Commit

Permalink
automatically include contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Aug 26, 2024
1 parent 93d52e3 commit 4a0d29b
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 71 deletions.
7 changes: 3 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ _jenkinsfile_sh:
###

# Will need to edit this
_contributors:
doc/contributors.txt: *.el *.org
@git log --format='- %an' HEAD^@ | \
sort | \
grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' | \
uniq
sort -u | \
grep -v -e 'harley gorrell' -e 'jenkins-bot' -e 'jhgorrell' > $@

###

Expand Down
56 changes: 56 additions & 0 deletions README.org
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
- Александар Симић
67 changes: 0 additions & 67 deletions README.rst

This file was deleted.

61 changes: 61 additions & 0 deletions doc/README.org
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
15 changes: 15 additions & 0 deletions doc/contributors.txt
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
- Александар Симић

0 comments on commit 4a0d29b

Please sign in to comment.