Change Nimrod to Nim and update links
This commit is contained in:
parent
78070b571d
commit
ee0480ce2f
|
@ -1,10 +1,10 @@
|
|||
If you add more editor support, don't forget to add it to the [FAQ](https://github.com/Araq/Nimrod/blob/master/web/question.txt) as well.
|
||||
If you add more editor support, don't forget to add it to the [FAQ](https://github.com/Araq/Nim/blob/master/web/question.txt) as well.
|
||||
|
||||
The following editors have some Nimrod support:
|
||||
The following editors have some Nim support:
|
||||
|
||||
### Emacs
|
||||
* https://github.com/reactormonk/nimrod-mode (requires emacs 24)
|
||||
* https://github.com/eegg/nimrod-mode (works with emacs 23 too, as of 2014-02-15)
|
||||
* https://github.com/reactormonk/nim-mode (requires emacs 24)
|
||||
* https://github.com/jameshfisher/nimrod-mode (works with emacs 23 too, as of 2014-02-15)
|
||||
|
||||
### Vim
|
||||
* https://github.com/zah/nimrod.vim/
|
||||
|
@ -16,16 +16,16 @@ The following editors have some Nimrod support:
|
|||
|
||||
* http://gradha.github.io/articles/2014/02/invoking-dash-from-the-command-line-vim.html
|
||||
|
||||
Instructions to map Vim's ``K`` letter to look up documentation under MacOSX using [Dash](http://forum.nimrod-lang.org/t/330).
|
||||
Instructions to map Vim's ``K`` letter to look up documentation under MacOSX using [Dash](http://forum.nim-lang.org/t/330).
|
||||
|
||||
### Scite
|
||||
Recent versions of Scite have out-of-the-box support for Nimrod. For older versions: <br />
|
||||
http://scintilla.hg.sourceforge.net/hgweb/scintilla/scite/raw-file/0d8c2122d6f8/src/nimrod.properties
|
||||
http://sourceforge.net/p/scintilla/scite/ci/default/tree/src/nimrod.properties?format=raw
|
||||
|
||||
### Aporia
|
||||
Aporia is a Nimrod IDE written in Nimrod.
|
||||
Aporia is a Nim IDE written in Nim.
|
||||
|
||||
https://github.com/nimrod-code/Aporia/
|
||||
https://github.com/nim-lang/Aporia/
|
||||
|
||||
### LightTable
|
||||
https://github.com/zah/nimrod.lt/
|
||||
|
@ -34,28 +34,28 @@ https://github.com/zah/nimrod.lt/
|
|||
https://github.com/zah/nimrod.atom/
|
||||
|
||||
### Gedit/Other GtkSourceView editors
|
||||
There is a .lang file for gedit [here](https://github.com/nimrod-code/Aporia/blob/master/share/gtksourceview-2.0/language-specs/nimrod.lang)
|
||||
There is a .lang file for gedit [here](https://github.com/nim-lang/Aporia/blob/master/share/gtksourceview-2.0/language-specs/nimrod.lang)
|
||||
|
||||
### Geany
|
||||
There is a [pull request](https://github.com/geany/geany/pull/193) to provide Nimrod support in [Geany](http://www.geany.org).
|
||||
|
||||
### Ctags
|
||||
Basic ```~/.ctags``` rules for nimrod code (Feel free to improve and contribute)
|
||||
Don't use this if possible, [nimrod idetools](http://build.nimrod-code.org/docs/idetools.html) provides better results.
|
||||
Basic ```~/.ctags``` rules for Nim code (Feel free to improve and contribute)
|
||||
Don't use this if possible, [Nim idetools](http://nim-lang.org/idetools.html) provides better results.
|
||||
|
||||
```
|
||||
--langdef=nimrod
|
||||
--langmap=nimrod:.nim
|
||||
--regex-nimrod=/(\w+)\*?\s*=\s*object/\1/t,class/
|
||||
--regex-nimrod=/(\w+)\*?\s*=\s*enum/\1/t,enum/
|
||||
--regex-nimrod=/(\w+)\*?\s*=\s*tuple/\1/t,tuple/
|
||||
--regex-nimrod=/(\w+)\*?\s*=\s*range/\1/t,subrange/
|
||||
--regex-nimrod=/(\w+)\*?\s*=\s*proc/\1/t,proctype/
|
||||
--regex-nimrod=/proc\s+(\w+)/\1/f,procedure/
|
||||
--regex-nimrod=/method\s+(\w+)/\1/f,method/
|
||||
--regex-nimrod=/proc\s+`([^`]+)`/\1/o,operator/
|
||||
--regex-nimrod=/template\s+(\w+)/\1/t,template/
|
||||
--regex-nimrod=/macro\s+(\w+)/\1/m,macro
|
||||
--langdef=nim
|
||||
--langmap=nim:.nim
|
||||
--regex-nim=/(\w+)\*?\s*=\s*object/\1/t,class/
|
||||
--regex-nim=/(\w+)\*?\s*=\s*enum/\1/t,enum/
|
||||
--regex-nim=/(\w+)\*?\s*=\s*tuple/\1/t,tuple/
|
||||
--regex-nim=/(\w+)\*?\s*=\s*range/\1/t,subrange/
|
||||
--regex-nim=/(\w+)\*?\s*=\s*proc/\1/t,proctype/
|
||||
--regex-nim=/proc\s+(\w+)/\1/f,procedure/
|
||||
--regex-nim=/method\s+(\w+)/\1/f,method/
|
||||
--regex-nim=/proc\s+`([^`]+)`/\1/o,operator/
|
||||
--regex-nim=/template\s+(\w+)/\1/t,template/
|
||||
--regex-nim=/macro\s+(\w+)/\1/m,macro
|
||||
```
|
||||
|
||||
### jEdit
|
||||
|
|
Loading…
Reference in New Issue