Skip to content

Commit

Permalink
Dicking around with markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
airhorns committed Feb 16, 2012
1 parent 3e7cb24 commit e0fbb60
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 240 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Expand Up @@ -22,9 +22,6 @@
[submodule "vim/bundle/supertab"]
path = vim/bundle/supertab
url = http://github.com/ervandew/supertab.git
[submodule "vim/bundle/vim-markdown-preview"]
path = vim/bundle/vim-markdown-preview
url = https://github.com/robgleeson/vim-markdown-preview.git
[submodule "vim/bundle/scss-syntax.vim"]
path = vim/bundle/scss-syntax.vim
url = https://github.com/cakebaker/scss-syntax.vim.git
Expand Down Expand Up @@ -85,3 +82,6 @@
[submodule "vim/bundle/mango"]
path = vim/bundle/mango
url = https://github.com/goatslacker/mango.vim
[submodule "vim/bundle/tagbar"]
path = vim/bundle/tagbar
url = https://github.com/majutsushi/tagbar.git
3 changes: 2 additions & 1 deletion bootstrap.sh
@@ -1,4 +1,4 @@
rm ../.bash_profile ../.bashrc ../.gitignore ../.gitconfig ../.gvimrc ../.vimrc ../.vim ../.toprc ../.screenrc ../.rdebugrc ../.ackrc
rm ../.bash_profile ../.bashrc ../.gitignore ../.gitconfig ../.gvimrc ../.vimrc ../.vim ../.toprc ../.screenrc ../.rdebugrc ../.ackrc ../.rdebugrc ../.ctags

ln -s ~/dotfiles/bash/bash_profile ../.bash_profile
ln -s ~/dotfiles/bash/bashrc ../.bashrc
Expand All @@ -11,5 +11,6 @@ ln -s ~/dotfiles/screenrc ../.screenrc
ln -s ~/dotfiles/toprc ../.toprc
ln -s ~/dotfiles/.ackrc ../.ackrc
ln -s ~/dotfiles/rdebugrc ../.rdebugrc
ln -s ~/dotfiles/ctags ../.ctags

git config --global core.excludesfile ~/.gitignore
5 changes: 5 additions & 0 deletions ctags
@@ -0,0 +1,5 @@
--langdef=coffee
--langmap=coffee:.coffee
--regex-coffee=/^[ \t]*class[ \t]+([A-Za-z\.]+)[ \t]*.*$/\1/c,class/
--regex-coffee=/^[ \t]*\@?(::)?([A-Za-z\.]+)[ \t]*(:|=).*->.*$/\2/f,function/
--regex-coffee=/^[ \t]*\@(classA|a)?ccessor[ \t]*("|')([A-Za-z\.]+)("|').*->.*$/\3/a,accessor/
2 changes: 1 addition & 1 deletion vim/bundle/coffee-script
Submodule coffee-script updated 6 files
+1 −1 Makefile
+4 −0 News.md
+1 −0 after/syntax/html.vim
+55 −32 indent/coffee.vim
+3 −22 syntax/coffee.vim
+7 −5 test/test.html
2 changes: 1 addition & 1 deletion vim/bundle/endwise
Submodule endwise updated 2 files
+52 −0 README.markdown
+97 −104 plugin/endwise.vim
2 changes: 1 addition & 1 deletion vim/bundle/nerdcommenter
2 changes: 1 addition & 1 deletion vim/bundle/nerdtree
1 change: 1 addition & 0 deletions vim/bundle/tagbar
Submodule tagbar added at ba0123
6 changes: 0 additions & 6 deletions vim/bundle/vim-markdown/ftdetect/markdown.vim

This file was deleted.

18 changes: 0 additions & 18 deletions vim/bundle/vim-markdown/ftplugin/markdown.vim

This file was deleted.

101 changes: 0 additions & 101 deletions vim/bundle/vim-markdown/syntax/markdown.vim

This file was deleted.

104 changes: 0 additions & 104 deletions vim/syntax/mkd.vim

This file was deleted.

2 changes: 1 addition & 1 deletion vim/syntax/percolate.vim
Expand Up @@ -9,7 +9,7 @@ syntax include @Markdown syntax/markdown.vim
let b:current_syntax = ''
unlet b:current_syntax
syntax include @Coffee syntax/coffee.vim
syntax region coffeeScriptCode matchgroup=Snip start="\~\~\~" end="\~\~\~" containedin=@Markdown contains=@Coffee
syntax region coffeeScriptCode matchgroup=Snip start="\!\!\!" end="\!\!\!" containedin=@Markdown contains=@Coffee

syn region markdownCoffeeCodeBlock start=" \|\t" end="$" containedin=@Markdown contains=@Coffee

Expand Down
2 changes: 1 addition & 1 deletion vim/vimrc
Expand Up @@ -249,5 +249,5 @@ let g:tagbar_type_coffee = {
\},
\ 'sro' : ".",
\ 'ctagsbin' : 'coffeetags',
\ 'ctagsargs' : '--include-vars ',
\ 'ctagsargs' : '',
\}

0 comments on commit e0fbb60

Please sign in to comment.