Skip to content

Instantly share code, notes, and snippets.

@thinca
Forked from h-east/fmv.vim
Created January 27, 2012 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinca/1688221 to your computer and use it in GitHub Desktop.
Save thinca/1688221 to your computer and use it in GitHub Desktop.
Create vimdoc-ja folder structure and move files. (for iOS Vim ja-help)
call mkdir("vimdoc-ja/doc", "p")
call mkdir("vimdoc-ja/syntax", "p")
call rename("help_ja.vim","vimdoc-ja/syntax/help_ja.vim")
for s:file in split(glob('*.jax'), "\n")
call rename(s:file, "vimdoc-ja/doc/" . s:file)
endfor
@thinca
Copy link
Author

thinca commented Jan 27, 2012

動作未確認。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment