Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillip Lanclos committed Aug 16, 2014
0 parents commit 66f1bd1
Show file tree
Hide file tree
Showing 304 changed files with 236,524 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
Binary file added Icon-full.psd
Binary file not shown.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# sVim
Vim bindings for Safari. I use [cVim](https://github.com/1995eaton/chromium-vim) in Chrome, but there is no good match for it in Safari. sVim is an attempt to make that match.

## sVimrc
- The sVimrc page is where you can customize sVim settings and css.
- You can access the page by pressing "g v" or via the extension settings in Safari.
- The sVimrc and sVimcss files can be synced via [gist](https://gist.github.com).
- The gist id is found at the end of the url when viewing the gist.
- Note it does not matter the name of your gist or the file, sVim will just grab the first file from the gist id supplied. I use sVim.rc and sVim.css.

//FIXX finish README
21 changes: 21 additions & 0 deletions manifest.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Extension Updates</key>
<array>
<dict>
<key>CFBundleIdentifier</key>
<string>com.flipxfx.svim</string>
<key>Developer Identifier</key>
<string>8PHST8UEB7</string>
<key>CFBundleVersion</key>
<string>101</string>
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<key>URL</key>
<string>https://github.com/flipxfx/sVim/releases/download/1.0.0/sVim.safariextz</string>
</dict>
</array>
</dict>
</plist>
Binary file added sVim.safariextension/Icon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sVim.safariextension/Icon-48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sVim.safariextension/Icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sVim.safariextension/Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions sVim.safariextension/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Author</key>
<string>Phillip Lanclos</string>
<key>Builder Version</key>
<string>9537.77.4</string>
<key>CFBundleDisplayName</key>
<string>sVim</string>
<key>CFBundleIdentifier</key>
<string>com.flipxfx.svim</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<key>CFBundleVersion</key>
<string>1.0.0</string>
<key>Chrome</key>
<dict>
<key>Database Quota</key>
<real>104857600</real>
<key>Global Page</key>
<string>sVimGlobal.html</string>
</dict>
<key>Content</key>
<dict>
<key>Scripts</key>
<dict>
<key>End</key>
<array>
<string>sVimTab.js</string>
</array>
<key>Start</key>
<array>
<string>mousetrap.js</string>
<string>sVimHint.js</string>
</array>
</dict>
</dict>
<key>Description</key>
<string>Vim shortcuts in Safari</string>
<key>ExtensionInfoDictionaryVersion</key>
<string>1.0</string>
<key>Permissions</key>
<dict>
<key>Website Access</key>
<dict>
<key>Include Secure Pages</key>
<true/>
<key>Level</key>
<string>All</string>
</dict>
</dict>
<key>Update Manifest URL</key>
<string>http://github.com/flipxfx/sVim/raw/master/manifest.plist</string>
<key>Website</key>
<string>http://flipxfx.com</string>
</dict>
</plist>
42 changes: 42 additions & 0 deletions sVim.safariextension/Settings.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>DefaultValue</key>
<false/>
<key>FalseValue</key>
<true/>
<key>Key</key>
<string>showsVimrc</string>
<key>Title</key>
<string>Click checkbox to show settings.</string>
<key>TrueValue</key>
<false/>
<key>Type</key>
<string>CheckBox</string>
</dict>
<dict>
<key>DefaultValue</key>
<string></string>
<key>Key</key>
<string>rc</string>
</dict>
<dict>
<key>DefaultValue</key>
<string></string>
<key>Key</key>
<string>rcGistId</string>
</dict>
<dict>
<key>Key</key>
<string>css</string>
</dict>
<dict>
<key>DefaultValue</key>
<string></string>
<key>Key</key>
<string>cssGistId</string>
</dict>
</array>
</plist>
Loading

0 comments on commit 66f1bd1

Please sign in to comment.