This repository has been archived by the owner on Dec 25, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Porting to vim #12
Labels
Comments
Jwong684
assigned ababaian, Jwong684 and fransilvion and unassigned ababaian and Jwong684
Nov 2, 2017
Hey, Jasper, I am back in the action! What type of file formats have you already done for vim? Is it only fasta? I will focus on pdb, vcf and bed (or you've done this one already?) files for now. If you need any help, just ask |
Hey German, I have also just started looking at this haha. I will do bed, since it seems relatively straightforward. If you have any code pertaining to some useful regexp in vim, please share it on here. I think it would be more helpful to see your logic rather than rely on some variable forums on vim regexp. Thank you! Jasper |
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is a useful tutorial to get into vim syntax:
http://vim.wikia.com/wiki/Creating_your_own_syntax_files
Enable syntax in ~/.vimrc:
There is essentially a vim folder in your home directory:
Make these subdirectories:
The files in these subdirectories must match. (i.e. fasta.vim in each of those folders for *.fasta)
in ftdetect/fasta.vim: (detects file formats)
In syntax/fasta.vim: (specifications)
Something kept breaking when I followed the online tutorial so I broke it down to this skeleton for now. More to come.
The text was updated successfully, but these errors were encountered: