Skip to content

Commit

Permalink
Fix whitespace mode, add auto-complete, isearch occur, update slime.
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoerner committed Nov 17, 2010
1 parent af742dd commit fca7b15
Show file tree
Hide file tree
Showing 36 changed files with 8,930 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ac-comphist.dat
*.elc
elpa/
malabar/
Expand Down
24 changes: 24 additions & 0 deletions auto-complete/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
VERSION=`perl -ne 'print $$1 if /;; Version: (.*)/' auto-complete.el`
PACKAGE=auto-complete-${VERSION}

byte-compile:
emacs -Q -L . -batch -f batch-byte-compile *.el

install:
emacs -Q -L . -batch -l etc/install ${DIR}

clean:
rm -f *.elc
rm -f doc/*.html
rm -rf ${PACKAGE}
rm -f ${PACKAGE}.zip ${PACKAGE}.tar.bz2

package: clean
mkdir ${PACKAGE}
cp -r *.el Makefile README.txt TODO.txt doc etc dict ${PACKAGE}

tar.bz2: package
tar cjf ${PACKAGE}.tar.bz2 ${PACKAGE}

zip: package
zip -r ${PACKAGE}.zip ${PACKAGE}
13 changes: 13 additions & 0 deletions auto-complete/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Auto Complete Mode
==================

Documentation
-------------

* http://cx4a.org/software/auto-complete/
* doc/index.txt

License
-------

Auto Complete Mode is distributed under the term of GPLv3. And its documentations under doc directory is distributed under the term of GFDL.
10 changes: 10 additions & 0 deletions auto-complete/TODO.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
- etags, ctags
- emacswiki
- test facility
- support composed chars
- minibuffer completion
- performance issue (cache issue)
- asynchronous processing
- kanji henkan support
- create menu if needed
- quick help positioning on tabs (bug)
Loading

0 comments on commit fca7b15

Please sign in to comment.