0

Typeahead / Dynamic filnames

Klaus Hougesen vor 11 Jahren 0
Id like this globally for all file types and filepaths.

example:
in a css file:
  background:url(IMAGE);
Pressing tab after writin IMAGE would give me a list of files /directories to select from, if only one is in the project it will autocomplete (like bash) with
  background:url(IMAGES/);
Pressing tab again would give list of files
  background:url(IMAGES/footer_);
Pressing tab would autocomplete footer_ or if several show the options
  background:url(IMAGES/footer_two.png);

Exactly like BASH tab completion....