Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unhammer/hfst-mode
📜 Major mode for editing Helsinki Finite State Tools files in Emacs
https://github.com/unhammer/hfst-mode
emacs finite-state hfst
Last synced: 7 days ago
JSON representation
📜 Major mode for editing Helsinki Finite State Tools files in Emacs
- Host: GitHub
- URL: https://github.com/unhammer/hfst-mode
- Owner: unhammer
- Created: 2010-01-07T07:45:57.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2016-07-11T10:21:56.000Z (over 8 years ago)
- Last Synced: 2024-11-07T02:39:18.618Z (about 2 months ago)
- Topics: emacs, finite-state, hfst
- Language: Emacs Lisp
- Homepage: http://wiki.apertium.org/wiki/Emacs#HFST
- Size: 20.5 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Major mode for twolc and lexc files.
HFST is Helsinki Finite State Tools, which uses OpenFST/foma/SFST/… to
create an free and open source alternative to Xerox Finite State
Tools.hfst-mode provides syntax highlighting for the twolc and lexc formats.
There is so far just one keyboard shortcut, `C-c G`, or
`hfst-mode-goto-lexicon`, which moves you to the definition of the
continuation lexicon referenced by the current entry.Usage:
(autoload 'hfst-mode "~/path/to/hfst-mode/hfst-mode.el")
; Change these lines if you name your files something other
; than .twol and .lexc:
(add-to-list 'auto-mode-alist '("\\.twol\\'" . hfst-mode))
(add-to-list 'auto-mode-alist '("\\.xfst\\'" . hfst-mode))
(add-to-list 'auto-mode-alist '("\\.lexc\\'" . hfst-mode))