xiki 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +5 -5
- data/menu/{dir.rb → directory.rb} +0 -0
- data/xiki.gemspec +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -61,7 +61,7 @@ We just patched el4r, so there's a chance Xiki might work in windows.
|
|
|
61
61
|
|
|
62
62
|
### Step 2: EmacsRuby (el4r) setup
|
|
63
63
|
|
|
64
|
-
$ cd `xiki
|
|
64
|
+
$ cd `xiki directory`
|
|
65
65
|
$ sudo bash etc/install/el4r_setup.sh
|
|
66
66
|
|
|
67
67
|
If you're using rvm, the sudo may not be necessary.
|
|
@@ -70,17 +70,17 @@ If you're using rvm, the sudo may not be necessary.
|
|
|
70
70
|
Sample configuration:
|
|
71
71
|
|
|
72
72
|
~/.el4r/init.rb:
|
|
73
|
-
$LOAD_PATH.unshift "(xiki
|
|
73
|
+
$LOAD_PATH.unshift "(xiki directory)/lib"
|
|
74
74
|
require 'xiki'
|
|
75
75
|
Xiki.init
|
|
76
76
|
|
|
77
77
|
KeyBindings.keys # Use default key bindings
|
|
78
78
|
Themes.use "Default" # Use xiki theme
|
|
79
79
|
|
|
80
|
-
Be sure to substitute '(xiki
|
|
80
|
+
Be sure to substitute '(xiki directory)' with the actual dir. If you
|
|
81
81
|
don't know it, run this command:
|
|
82
82
|
|
|
83
|
-
$ xiki
|
|
83
|
+
$ xiki directory
|
|
84
84
|
|
|
85
85
|
### If you get an error
|
|
86
86
|
|
|
@@ -103,7 +103,7 @@ Vim support is very partially implemented, but should be pretty
|
|
|
103
103
|
straight-forward to implement. It turns out vim is very easy to
|
|
104
104
|
extend using ruby. See this file to try it out:
|
|
105
105
|
|
|
106
|
-
(xiki
|
|
106
|
+
(xiki directory)/etc/vim/vim_status.notes
|
|
107
107
|
|
|
108
108
|
## CodeMirror
|
|
109
109
|
|
|
File without changes
|
data/xiki.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xiki
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -456,7 +456,7 @@ files:
|
|
|
456
456
|
- menu/diffs.menu
|
|
457
457
|
- menu/dimensions_config.menu
|
|
458
458
|
- menu/dimensions_config.rb
|
|
459
|
-
- menu/
|
|
459
|
+
- menu/directory.rb
|
|
460
460
|
- menu/disk.rb
|
|
461
461
|
- menu/do.rb
|
|
462
462
|
- menu/docs.menu
|