Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue737 treebrowser follow doc fix #796

Closed
wants to merge 5 commits into from

Commits on Dec 2, 2018

  1. TreeBrowser: Fix wording

    eht16 committed Dec 2, 2018
    Configuration menu
    Copy the full SHA
    5f39c55 View commit details
    Browse the repository at this point in the history
  2. TreeBrowser: Fix memory leaks

    eht16 committed Dec 2, 2018
    Configuration menu
    Copy the full SHA
    426c0cc View commit details
    Browse the repository at this point in the history
  3. TreeBrowser: Always search the whole path when trying to find current…

    … file in tree
    
    If the current file path is not part of the current directory,
    the code starts at / to find the path. However, it always skipped the
    first path part (i.e. /) and so never matched.
    This happened most often when Geany's default open directory has
    no common parts with the file path of the current document (e.g.
    Geany's default open directory is /tmp and the file path is like
    /home/user/src/somefile.c).
    eht16 committed Dec 2, 2018
    Configuration menu
    Copy the full SHA
    f63e689 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    863d545 View commit details
    Browse the repository at this point in the history
  5. TreeBrowser: Strip drive letter on Windows

    This is rather a hack than a fix: we ignore the drive letter completely
    on Windows and use \some\path consequently in the code.
    This breaks multi drive support for now but fixes many path related
    features like 'Follow current document' which was also broken before.
    eht16 committed Dec 2, 2018
    Configuration menu
    Copy the full SHA
    428b6d5 View commit details
    Browse the repository at this point in the history