-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix whitespace mode, add auto-complete, isearch occur, update slime.
- Loading branch information
1 parent
af742dd
commit fca7b15
Showing
36 changed files
with
8,930 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
ac-comphist.dat | ||
*.elc | ||
elpa/ | ||
malabar/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Oops, something went wrong.