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 python | |
# Module : SysTrayIcon.py | |
# Synopsis : Windows System tray icon. | |
# Programmer : Simon Brunning - [email protected] | |
# Date : 11 April 2005 | |
# Notes : Based on (i.e. ripped off from) Mark Hammond's | |
# win32gui_taskbar.py and win32gui_menu.py demos from PyWin32 | |
import os |
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
diff -uNrp vim.orig_cscope/runtime/doc/if_cscop.txt vim/runtime/doc/if_cscop.txt | |
--- vim.orig_cscope/runtime/doc/if_cscop.txt 2016-10-14 15:34:12.783474620 +0530 | |
+++ vim/runtime/doc/if_cscop.txt 2016-10-14 15:37:55.947476646 +0530 | |
@@ -264,6 +264,8 @@ The default value is "" (don't use quick | |
seems to be useful: > | |
:set cscopequickfix=s-,c-,d-,i-,t-,e-,a- | |
< | |
+If cscope was executed with !, Vim will not jump to the first error in | |
+the quickfix window. | |
*cscopetag* *cst* |
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
#!/bin/bash | |
# Sample command arguments supported: | |
# "/path/to/putty.exe" -ssh -load "anishsane-dev" -l asane anishsane-dev | |
# "/path/to/putty.exe" -load "anishsane-dev" | |
# "/path/to/putty.exe" -local <~~~ This is not a standard putty option. | |
# But it is allowed to pass arbitrary options | |
# to putty binary from mtputty. | |
local_session=false | |
for ((i=1;i<=$#;i++)); do |
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
# Author: Anish sane | |
# | |
# My SO profile: http://stackoverflow.com/users/793796/anishsane | |
# | |
# Description: | |
# | |
# By default vim highlight the current selection with 'Search' highlight rules. | |
# It's hard-coded in the vim source code. | |
# Because of this, it's difficult to search for something within the quick fix window. | |
# |