##// END OF EJS Templates
Try to elide long completion based on user input....
Try to elide long completion based on user input. If what the user has typed is already in the completion and the completion is really long, try to elide what the user has already typed from the displayed text of the completion. Keep the first 3 and last 3 of what is already present. This will behave weirdly if all the completion have a common prefix as I believe prompt toolkit will insert the common prefix (or do we?). I'll have to check how to consider the common prefix as being typed.

File last commit:

r25441:7d815833
r25689:d5704fdc
Show More
MANIFEST.in
45 lines | 787 B | text/plain | TextLexer
Fernando Perez
Minor doc updates, ensure README is in final tarball.
r6599 include README.rst
Jonathan Frederic
s/COPYING.txt/COPYING.rst
r15990 include COPYING.rst
Matthias Bussonnier
Update LICENCE and Copying to match....
r24268 include LICENSE
Fernando Perez
Fixes to build system.
r1522 include setupbase.py
Brian Granger
Fixes in MANIFEST.in and ipcontroller.py...
r1727 include setupegg.py
Matthias Bussonnier
Update LICENCE and Copying to match....
r24268 include MANIFEST.in
Matthias Bussonnier
Also run test with Pytest....
r25117 include pytest.ini
Matthias Bussonnier
Update LICENCE and Copying to match....
r24268 include .mailmap
recursive-exclude tools *
exclude tools
exclude CONTRIBUTING.md
Matthias Bussonnier
ignore .editorconfig
r24273 exclude .editorconfig
Ville M. Vainio
more crlf
r1033
graft setupext
Brian Granger
Fixing a few bugs to get the win32 installer working again.
r2060 graft scripts
MinRK
update MANIFEST.in...
r4169
Fernando Perez
Ignore local static copy of mathjax in MANIFEST
r5005 # Load main dir but exclude things we don't want in the distro
MinRK
update MANIFEST.in...
r4169 graft IPython
Brian E Granger
Finished initial reworking and updating of setup.py and friends, including the MANIFEST.in. Everything seems...
r1244
Fernando Perez
Fix missing files in MANIFEST.in causing setup from sdist to fail.
r5176 # Documentation
Brian E Granger
Fixed setupbase.py and MANIFEST.in to reflect all the changes to docs. Currently,...
r1259 graft docs
exclude docs/\#*
MinRK
exclude gzipped manpages from sdist
r6611 exclude docs/man/*.1.gz
Ville M. Vainio
docs: remove build crap from sdist with manifest.in
r1192
Matthias Bussonnier
Exclude .git-blame-ignore-revs to fix CI...
r25441 exclude .git-blame-ignore-revs
Brian Granger
Updating MANIFEST.in for new examples location.
r9192 # Examples
graft examples
Fernando Perez
Fixes to build/setup machinery....
r1525 # docs subdirs we want to skip
prune docs/build
MinRK
update MANIFEST.in...
r4169 prune docs/gh-pages
MinRK
don't build sphinx docs for sdist
r6145 prune docs/dist
Ville M. Vainio
more crlf
r1033
Fernando Perez
Fix missing files in MANIFEST.in causing setup from sdist to fail.
r5176 # Patterns to exclude from any directory
Ville M. Vainio
more crlf
r1033 global-exclude *~
global-exclude *.flc
Matthias Bussonnier
Update LICENCE and Copying to match....
r24268 global-exclude *.yml
Ville M. Vainio
more crlf
r1033 global-exclude *.pyc
Fernando Perez
Fix missing files in MANIFEST.in causing setup from sdist to fail.
r5176 global-exclude *.pyo
Ville M. Vainio
more crlf
r1033 global-exclude .dircopy.log
MinRK
exclude `.git`...
r12201 global-exclude .git
MinRK
exclude notebook checkpoints from manifest
r15028 global-exclude .ipynb_checkpoints