This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<link rel="Stylesheet" type="text/css" href="/css/style.css" > | |
<title>search results : vim online</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> | |
<meta name="KEYWORDS" content="Vim, Vi IMproved, text editor, home, documentation, tips, scripts, news"> | |
<link rel="shortcut icon" type="image/x-icon" href="/images/vim_shortcut.ico"> | |
<link rel="alternate" type="application/atom+xml" title="search results (Atom 1.0)" href="http://feed43.com/vim-scripts.xml" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Fetch List of Vim Script as JSON | |
import io | |
import re | |
import urllib.request | |
import html.entities | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# find issues for non-member and add them vim-jp member list | |
import base64 | |
import getpass | |
import json | |
import re | |
import urllib.error | |
import urllib.request |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" /usr/bin/vim -e -s -u colorcat.vim file-to-be-colored.c | |
if has('gui_running') | |
finish | |
endif | |
set nocompatible | |
syntax on | |
filetype on | |
edit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import base64 | |
import email.generator | |
import email.mime.application | |
import email.mime.multipart | |
import email.mime.text | |
import io | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let s:Calc = {} | |
function s:Calc.new(...) | |
let obj = copy(self) | |
call call(obj.__init__, a:000, obj) | |
return obj | |
endfunction | |
function s:Calc.__init__() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if !exists('&imstatusfunc') || !has('gui_running') | |
finish | |
endif | |
" Initialize after fork and GUI focus gained to get current input context. | |
autocmd FocusGained * call s:Init() | |
let s:init = 0 | |
function! s:Init() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
augroup Footmark | |
au! | |
autocmd CursorMoved,CursorMovedI * call s:Footmark() | |
augroup END | |
let s:max = 5 | |
function! s:Footmark() | |
if !exists('w:footmark_marks') | |
let w:footmark_marks = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Replace import DLL name. | |
* | |
* XXX: 32bit only | |
* | |
* Usage: | |
* peirep.exe /replace msvcrt.dll msvcr100.dll app.exe out.exe | |
* | |
* Reference: | |
* http://msdn.microsoft.com/msdnmag/issues/02/03/PE2/default.aspx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem create forwarding dll, libintl.dll forwarding intl.dll | |
rem reference: http://hp.vector.co.jp/authors/VA050396/tech_09.html | |
lib /DEF:intl.def | |
cl /LD libintl.c libintl.def intl.lib |