Skip to content

A vim plugin for converting between iso2709, MarcXML, and .mrk bibliographic formats

Notifications You must be signed in to change notification settings

whatupmiked/vim-marc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vim-marc

Plugin for converting MARC 21 bibliographic records between .mrc, .mrk and .xml file formats.

asciicast

Formats

vim-marc converts between 3 standard formats:

Commands

:Mrc21 Converts to MARC 21 format, sets file type to .mrc
:MrcMrk Converts to mnemonic text format, sets file type to .mrk
:MrcXML Converts to MARC XML format, sets file type to .xml
:MrcCycle Cycles through MARC 21, Mnnemonic text format and MARC XML, sets file type respectively to .mrc, .mrk and .xml

Mappings

Hot keys for the above commands can created with the map command and added to your VIM configuration file .vimrc (Linux/Unix) or vimrc (Windows).

map <C-C> :Mrc21<CR>
map <C-K> :MrcMrk<CR>
map <C-X> :MrcXML<CR>
map <C-Y> :MrcCycle<CR>

These can be changed to a hot key of your choice.

Note: A list of predefined mode-specific mappings can be inserted in /plugin/vim-marc.vim

Syntax highlighting

vim-marc is packaged with syntax highlighting for .mrc and .mrk formats. It uses the build-in .xml highlighting in vim.

Note: Vim has a maximum # of characters per line that it can highlight by default. This value is 3000. If you have a long record, or multiple records in a single .mrc file, you may hit the highlighting limit.

To remove the limit add set smc=0 to your vimrc file.Warning: this may add redraw delay. Alternatively, set it to a large value of your choice (eg. 10000).

Encoding

When converting between .mrk and .mrc, vim-marc enforces utf-8 character encoding in order to get the correct ASCII character length.

Documentation

To view the documentation in vim type :help vim-marc If the documentation is not loading, compile a help tags file :helptags ALL

Dependencies

Tested on Vim version 8.1 and Python version 3.5.2 or later.

Contribution

Pull requests welcome! Please feel free to rate the plugin on vim.org if you like it!

License

MIT License

About

A vim plugin for converting between iso2709, MarcXML, and .mrk bibliographic formats

Resources

Stars

Watchers

Forks

Packages

No packages published