nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit afce41c75425535d079bc14d2ce2df3b2ad50721
parent 36e22c99a160affab0707ef514e57a1a558702d0
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 21 Apr 2020 12:06:59 +0200

syntaxes: move the rules for Fortran and Povray files down to extra/

Fortran and POV-Ray files are not found on any regular install of a
Unixy system nor in common software packages.  People who want these
syntaxes will have to make a little effort to enable them.

Diffstat:
Msyntax/Makefile.am | 5+++--
Rsyntax/fortran.nanorc -> syntax/extra/fortran.nanorc | 0
Rsyntax/pov.nanorc -> syntax/extra/povray.nanorc | 0
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/syntax/Makefile.am b/syntax/Makefile.am @@ -8,7 +8,6 @@ pkgdata_DATA = asm.nanorc \ default.nanorc \ elisp.nanorc \ email.nanorc \ - fortran.nanorc \ go.nanorc \ groff.nanorc \ guile.nanorc \ @@ -30,7 +29,6 @@ pkgdata_DATA = asm.nanorc \ php.nanorc \ po.nanorc \ postgresql.nanorc \ - pov.nanorc \ python.nanorc \ ruby.nanorc \ rust.nanorc \ @@ -42,7 +40,10 @@ pkgdata_DATA = asm.nanorc \ nobase_pkgdata_DATA = \ extra/debian.nanorc \ + extra/fortran.nanorc \ extra/gentoo.nanorc \ + extra/haskell.nanorc \ + extra/povray.nanorc \ extra/spec.nanorc EXTRA_DIST = $(pkgdata_DATA) $(nobase_pkgdata_DATA) diff --git a/syntax/fortran.nanorc b/syntax/extra/fortran.nanorc diff --git a/syntax/pov.nanorc b/syntax/extra/povray.nanorc