Tag: sublime text

  • Sublime Text 4 is now released and available

    Sublime Text 4 is now released and available

    Sublime Text 4 is now released and available

    The first stable release of Sublime Text 4 is now released and available. It now works with Apple Silicon and Linux ARM64, and includes a lot of great new features: Tab Multi-Select, Refreshed UI, Context-Aware Auto Complete, TypeScript, JSX and TSX Support, Superpowered Syntax Definitions

    The first stable release of Sublime Text 4 has finally arrived! We’ve worked hard on providing improvements without losing focus on what makes Sublime Text great. There are some new major features that we hope will significantly improve your workflow and a countless number of minor improvements across the board.
    A huge thanks goes out to all the beta testers on discord and all the contributors to our packages.

    👉Download Sublime Text 4

    👉Cài đặt Flutter với Visual Studio Code

    #Sublime Text 4: License Changes

    Sublime Text license keys are no longer tied to a single major version, instead they are now valid for all updates within 3 years of purchase. After that, you will still have full access to every version of Sublime Text released within the 3 year window, but newer builds will required a license upgrade. These are the same license terms we use for Sublime Merge, and they allow us to deliver more frequent and exciting updates as soon as they’re ready, without having to roll them into a new major version.

    #Sublime Text 4: Tab Multi-Select

    File tabs have been enhanced to make split views effortless, with support throughout the interface and built-in commands. The side bar, tab bar, Goto Anything, Goto Definition, auto complete and more have all been tweaked to make code navigation easier and more intuitive than ever.

    Sublime Text 4 is now released and available 1

    #Sublime Text 4: Apple Silicon and Linux ARM64

    Sublime Text for Mac now includes native support for Apple Silicon processors. Linux ARM64 builds are also available for devices like the Raspberry Pi.

    #Sublime Text 4: Refreshed UI

    The Default and Adaptive themes have been refreshed with new tab styles and inactive pane dimming. Themes and Color Schemes support auto dark-mode switching. The Adaptive theme on Windows and Linux now features custom title bars.

    #Sublime Text 4: Context-Aware Auto Complete

    The auto complete engine has been rewritten to provide smart completions based on existing code in a project. Suggestions are also augmented with info about their kind, and provide links to definitions.

    Sublime Text 4 is now released and available 2

    #Sublime Text 4: TypeScript, JSX and TSX Support

    Support for one of the most popular new programming languages is now shipped by default. Utilize all of the smart syntax-based features of Sublime Text within the modern JavaScript ecosystem.

    #Sublime Text 4: Superpowered Syntax Definitions

    The syntax highlighting engine has been significantly improved, with new features like handling non-deterministic grammars, multi-line constructs, lazy embeds and syntax inheritance. Memory usage has been reduced, and load times are faster than ever.

    #Sublime Text 4: GPU Rendering

    Sublime Text can now utilize your GPU on Linux, Mac and Windows when rendering the interface. This results in a fluid UI all the way up to 8K resolutions, all while using less power than before.

    A single frame being rendered. See our blogpost on OpenGL rendering.

    Updated Python API

    The Sublime Text API has been updated to Python 3.8, while keeping backwards compatibility with packages built for Sublime Text 3. The API has been significantly expanded, adding features that allow plugins like LSP to work better than ever. Read the revamped documentation here.

    Compatibility

    Sublime Text 4 is fully compatible with version 3. It will pickup your session and configuration automatically. If you’d prefer however, it is possible to keep things separate.

  • Delete all comment lines in Sublime Text 3

    Delete all comment lines in Sublime Text 3

    To delete all specific <tag> element including contents inside it:

    • Ctrl + H (on PC)
    • Enable (Regular Expression): .* icon or Alt + R
    • Find What:

      RE syntax to work with a particular tag,

      (?s)<start tag>.*?<end tag>

      Such as, for CSS comment tags,

      (?s)/*.*?*/

      For HTML comment tags,

      (?s)<!--.*?-->

    • Replace With: Leave the field blank
    • Replace All