Skip to content

Releases: Osmose/advanced-open-file

v0.10.0

19 Sep 23:34
Compare
Choose a tag to compare
  • Disabled soft-word-wrap on the path input to avoid scrolling/wrapping issues
    on long paths.
  • Improve directory detection for adding the project folder button. Fixes an
    issue with Windows directories starting with a drive letter missing the
    button.
  • Rename Helm-style shortcuts to fast directory-switch shortcuts and add a new
    shortcut :/ for switching to the project root directory.
  • Only show the parent directory in the listing if the file list is not being
    filtered.
  • Show "Add as project folder" button for all folders that are not project
    folders. Previously all folders within project folders were missing the
    button.
  • Scroll cursor in input to the end of the text when triggering autocomplete.

v0.9.2

19 Sep 23:35
Compare
Choose a tag to compare
  • Improved dialog layout. (JesseLeite)
  • Added event emitter, onDidOpenFile, and onDidCreateFile for other packages
    to detect when files are opened.

v0.9.1

05 Sep 06:52
Compare
Choose a tag to compare
  • Update description and README and publish to update the registry.

v0.9.0

05 Sep 06:40
Compare
Choose a tag to compare
  • Fix handling of Windows paths by replace all forward-slash instances
    with path.sep, and detecting the root directory for a path better.
  • Removed support for creating multiple paths at once, as it doesn't
    really fit with what advanced-open-file is about and made the code
    harder to understand.
  • Add Ctrl-p/Ctrl-n and Ctrl-i/Ctrl-k as alternative keybindings
    for moving through the file list, and use commands for all keybindings
    to make customization easier.
  • Fix bug where clearing the input and entering "~/" with Helm-style
    shortcuts enabled did not automatically fill in the user's home
    directory.
  • Added option for the default input value on toggle.
  • When scrolling with the keyboard, the list of matching files now
    scrolls to show the selected file when it is out of view.
  • Paths entered in the input that are not absolute are now considered
    relative to the first project root. When relative paths are being used, the
    directory listing will not show a parent entry past the project root.

v0.8.2

05 Sep 06:41
Compare
Choose a tag to compare
  • Make icons in dropdown compatible with the file-icons package. SUCH FANCY
  • Add icon to directories entries that, when clicked, adds them as project
    directories.

v0.8.1

05 Sep 06:41
Compare
Choose a tag to compare
  • Scroll to the end of the search box on attach in case the path is super long.

v0.8.0

05 Sep 06:41
Compare
Choose a tag to compare
  • Add option for Helm-style fast directory switching.
  • Add ability to undo changes to the autocomplete field using Ctrl/Cmd-Z.
  • Fix bug where clicking the icon or path in a list item would beep and
    fail instead of selecting the clicked list item.
  • Fix bug where entering a directory named ~ was impossible with fast directory
    switching enabled.

v0.7.2

05 Sep 06:42
Compare
Choose a tag to compare
  • Default to project root when showing dialog while no tab is active.

v0.7.1

05 Sep 06:42
Compare
Choose a tag to compare
  • Add a GIF to the README (and publish a new release so atom.io picks it
    up).

v0.7.0

05 Sep 06:42
Compare
Choose a tag to compare
  • Add ability to hover and click on entries in the file/folder listing.
    Directories are added to the current path, while files are immediately
    opened.
  • Add scrollbar when file/folder listing is taller than the window.
  • Add ability to move through the file/folder listing with the keyboard.
    Up and down arrow keys will select list items and Enter will select
    them in the same way a mouse click does.
  • Add entry at the top of the file/folder listing for the parent
    directory.
  • Fix bug with appending a path separator to the filesystem root.