Does Sublime Text 3 keep a command log? If so, where can I find it?

193

Solution 1

No, use this: yrammos / SublimeLog

From README

Sublime Text 2 and 3 provide a console (accessible via Control-`) for interaction with their Python-based innards and plug-in architecture. This plug-in logs the console contents into a plain-text file ornamented with logger activation/deactivation timestamps.

Solution 2

Yes, it does.

You can see console history this file:

/Users/maks/Library/Application Support/Sublime Text 3/Data/Local/Session.sublime_session

It is a JSON file and the console commands are stored in windows.console.history.

One note though, Sublime Text does not update the file until you close the program.

Share:
193

Related videos on Youtube

Charles Mosndup
Author by

Charles Mosndup

Updated on September 18, 2022

Comments

  • Charles Mosndup
    Charles Mosndup over 1 year

    When I open the same site with Google Chrome on one side and HtmlUnit.WebClient(BrowserVersion.CHROME) on the other, I do not see the same cookies on both sides. Cookies are checked here with Google-Chrome-Dev. Nine cookies vs four cookies for the same site.

    The site is linckx.odoo.com.

    Is there something missing in my HtmlUnit code?

    final WebClient webClient = new WebClient(BrowserVersion.CHROME);
    webClient.getOptions().setCssEnabled(false);
    webClient.getCookieManager().setCookiesEnabled(true);
            
    CookieManager cookieManager = webClient.getCookieManager();
    
    final HtmlPage loginPage = webClient.getPage(url + "/en_US/web/login");
    

    HtmlUnit

    Google Chrome

    • RBRi
      RBRi about 3 years
      Is this site public? Any chance to reproduce?
    • Charles Mosndup
      Charles Mosndup about 3 years
  • Maxim Yefremov
    Maxim Yefremov over 10 years
    for me path was /Users/maks/Library/Application Support/Sublime Text 3/Local/Session.sublime_session. Due to it is updated only after closing sublime, it is not compatible for my task. thank you anyway.