Skip to content

Instantly share code, notes, and snippets.

View seperman's full-sized avatar
💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.

Sep Dehpour seperman

💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.
View GitHub Profile
@seperman
seperman / pry.sublime-snippet
Created January 17, 2018 07:44
pry sublime snippet
<snippet>
<content><![CDATA[require 'pry'; binding.pry]]></content>
<tabTrigger>pry</tabTrigger>
<scope>source.ruby</scope>
<description>pry</description>
</snippet>
@seperman
seperman / Default (Linux).sublime-keymap
Created January 27, 2020 07:50
Sublime keybinding for Ubuntu
[
{ "keys": ["ctrl+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["super+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+super+/"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+g"], "command": "find_next" },
{ "keys": ["ctrl+shift+g"], "command": "find_prev" },
{ "keys": ["alt+ctrl+i"], "command": "find_under" },
{ "keys": ["shift+alt+ctrl+g"], "command": "find_under_prev" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
<Form onSubmit={handleSubmit(onSubmit)} className='wizardForm'>
<div className="SaveCancelDiv">
<Button primary type='submit'>Resolve</Button>
<Button secondary onClick={() => history.goBack()}>Cancel</Button>
<ErrorBox errors={errors} message={error_msg}/>
</div>
</Form>