Skip to content

Instantly share code, notes, and snippets.

View gregforcey's full-sized avatar

Greg Forcey gregforcey

View GitHub Profile
@gregforcey
gregforcey / sublimeREPL_python_path.json
Last active September 7, 2018 17:52
the path name syntax to use when setting up SublimeREPL with the ArcGIS python installation
// default_extend_env are used to augment any environment variables
// that should be visible for all subprocess repls launched within
// SublimeREPL. This is a very good place to add PATH extension
// once "PATH": "{PATH}:/home/username/mylocalinstalls/bin" or whatever
"default_extend_env": {"PATH": "C:/Python27/ArcGISx6410.6"}
// Add a comma to the end of the line above if you have other options in your user settings
@gregforcey
gregforcey / userChrome.css
Last active August 29, 2023 20:57
Firefox CSS file that shows icons in the bookmarks toolbar and auto-hides it when not hovering
/* --- Some code borrowed from /u/Trustadz --- */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once in userChrome.css */
/*
1. Add this for no text in the bookmark bar. Adjust the margins if you want more or less space around the icons.
*/
.bookmark-item{
margin-left: 2px !important;
margin-right: 2px !important;
padding-right: 0 !important;
@gregforcey
gregforcey / Keybindings Mac.json
Last active January 12, 2017 00:16
Sublime Text 3 Customizations
[
{ "keys": ["super+k", "super+t"], "command": "title_case" },
// { "keys": ["super+f"], "command": "show_panel", "args": {"panel": "find", "reverse": false, "in_selection": true} },
// { "keys": ["alt+s"], "command": "toggle_in_selection", "context":
// [
// { "key": "setting.is_widget", "operator": "equal", "operand": true }
// ]
// }
]