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

Update to Version 2.0.0 #14

Merged
merged 5 commits into from
May 6, 2019
Merged

Update to Version 2.0.0 #14

merged 5 commits into from
May 6, 2019

Commits on May 6, 2019

  1. Feature: Add ShowCurrentEasyWorkspace command

    The ShowCurrentEasyWorkspace commands lists the currently opened easyworkspaces in
    the current window using a quick input dialog. The workspace owned by this window
    is highlighted with a preceeding asterisk '*'.
    
    We add this new feature as a way to allow the user to identify which workspace they
    are currently editing.
    jmooney committed May 6, 2019
    Configuration menu
    Copy the full SHA
    b83f470 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c4fd2a0 View commit details
    Browse the repository at this point in the history
  3. Feature: Add read-only attribute to saved views

    Saved workspaces will now remember if a view was in read-only mode.
    jmooney committed May 6, 2019
    Configuration menu
    Copy the full SHA
    a73c7bb View commit details
    Browse the repository at this point in the history
  4. BugFix: Do not add unsaved or temporary views into saved workspaces

    If a workspace was saved when an unsaved file was open in sublime, the workspace
    would contain views with '' empty filenames. This could cause the plugin
    to fail since these files could not be loaded.
    jmooney committed May 6, 2019
    Configuration menu
    Copy the full SHA
    b84bdea View commit details
    Browse the repository at this point in the history
  5. BugFix: Ignore hidden files in workspaces folder

    All files saved under the workspaces directory are displayed in the open workspace
    prompt. Under certain circumstances, unwanted files would be displayed accordingly.
    
    On Mac OS X for instance, a .DS_STORE file can be created under the workspaces
    directory which will obfuscate the true workspaces.
    
    This commit ignores any 'hidden' folders within the workspaces directory. As an alternative
    fix, we could have only shown files that were with the '.ws' extension, but this may be
    too restrictive under some circumstances. Perhaps the user changes the extension in the settings?
    
    We can revisit as needed if this solution proves insufficient.
    jmooney committed May 6, 2019
    Configuration menu
    Copy the full SHA
    9d92cd7 View commit details
    Browse the repository at this point in the history