Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f45a93cd1aaa9d030a2f0b204f8fd78763cc6295)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f45a93cd1aaa9d030a2f0b204f8fd78763cc6295)
  • Date: Tue, 25 Mar 2014 01:06:20 -0500

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 4 ++++
editors/vimoutliner/BUILD | 1 +
editors/vimoutliner/DEPENDS | 1 +
editors/vimoutliner/DETAILS | 32 ++++++++++++++++++++++++++++++++
editors/vimoutliner/HISTORY | 2 ++
editors/vimoutliner/INSTALL | 8 ++++++++
editors/vimoutliner/PREPARE | 2 ++
7 files changed, 50 insertions(+)

New commits:
commit f45a93cd1aaa9d030a2f0b204f8fd78763cc6295
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

vimoutliner: new spell, Outline processor for lightning fast authoring

diff --git a/ChangeLog b/ChangeLog
index 5023660..97f62af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-03-25 Ismael Luceno <ismael AT sourcemage.org>
+ * editors/vimoutliner: new spell, Outline processor designed for
+ lightning fast authoring
+
2014-03-24 Treeve Jelbert <treeve AT sourcemage.org>
* hicolor-icon-theme: move to desktop-themes
* oxygen-icons: move to desktop-themes
diff --git a/editors/vimoutliner/BUILD b/editors/vimoutliner/BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/editors/vimoutliner/BUILD
@@ -0,0 +1 @@
+true
diff --git a/editors/vimoutliner/DEPENDS b/editors/vimoutliner/DEPENDS
new file mode 100755
index 0000000..367c2e1
--- /dev/null
+++ b/editors/vimoutliner/DEPENDS
@@ -0,0 +1 @@
+depends vim
diff --git a/editors/vimoutliner/DETAILS b/editors/vimoutliner/DETAILS
new file mode 100755
index 0000000..df56596
--- /dev/null
+++ b/editors/vimoutliner/DETAILS
@@ -0,0 +1,32 @@
+ SPELL=vimoutliner
+if [[ "$VIMOUTLINER_AUTOUPDATE" == "y" ]]; then
+ VERSION=$(date +%Y%m%d)
+else
+ VERSION=scm
+fi
+ SOURCE="${SPELL}-git.tar.bz2"
+ SOURCE_URL[0]=git://github.com/$SPELL/$SPELL.git
+ SOURCE_IGNORE=volatile
+ FORCE_DOWNLOAD=on
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-git"
+ WEB_SITE="http://www.vim.org/scripts/script.php?script_id=3645";
+ LICENSE[0]="GPL"
+ ENTERED=20130522
+ KEYWORDS=""
+ SHORT="Outline processor designed for lightning fast authoring"
+cat << EOF
+VimOutliner is an outline processor with many of the same features as
Grandview,
+More, Thinktank, Ecco, etc. Features include tree expand/collapse, tree
+promotion/demotion, level sensitive colors, interoutline linking, and body
text.
+
+What sets VimOutliner apart from the rest is that it's been constructed from
the
+ground up for fast and easy authoring. Keystrokes are quick and easy,
+especially for someone knowing the Vim editor. The mouse is completely
+unnecessary (but is supported to the extent that Vim supports the mouse).
Many
+of the VimOutliner commands start with a double comma because that's very
quick
+to type.
+
+All VimOutliner files have the ".otl" extension. For an overview of the
+VimOutliner commands you can type ":h vo_cheatsheet" when you have opened an
+otl file. For help on VimOutliner type ":h vo"
+EOF
diff --git a/editors/vimoutliner/HISTORY b/editors/vimoutliner/HISTORY
new file mode 100644
index 0000000..1a163b4
--- /dev/null
+++ b/editors/vimoutliner/HISTORY
@@ -0,0 +1,2 @@
+2013-05-22 Ismael Luceno <ismael AT sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, INSTALL, PREPARE: spell created
diff --git a/editors/vimoutliner/INSTALL b/editors/vimoutliner/INSTALL
new file mode 100755
index 0000000..c82ee1d
--- /dev/null
+++ b/editors/vimoutliner/INSTALL
@@ -0,0 +1,8 @@
+vimdir="$INSTALL_ROOT/usr/share/vim/vimfiles"
+
+cd "$SOURCE_DIRECTORY" &&
+for i in syntax ftplugin ftdetect doc colors vimoutliner
vimoutliner/scripts; do
+ install -m755 -d "$vimdir/$i"
+ install -m644 "$i"/* "$vimdir/$i"
+done
+vim -c "helptags $vimdir/doc" -c q
diff --git a/editors/vimoutliner/PREPARE b/editors/vimoutliner/PREPARE
new file mode 100755
index 0000000..a68f274
--- /dev/null
+++ b/editors/vimoutliner/PREPARE
@@ -0,0 +1,2 @@
+. ${GRIMOIRE}/FUNCTIONS &&
+prepare_select_branch scm



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (f45a93cd1aaa9d030a2f0b204f8fd78763cc6295), Ismael Luceno, 03/25/2014

Archive powered by MHonArc 2.6.24.

Top of Page