
- #Goland themes code
- #Goland themes windows
GoLand in new Dark Purple theme - Say hello to the brand new UI themes! Dark Purple, Cyan Light, and Gray themes are now available, via plugins.It allows you to debug applications which require privileged operations as a user. Run Go configurations with sudo - Run/Debug Configurations can now be run with sudo.Like with core dumps, it’s as easy as selecting Run | Open Core Dump.
#Goland themes windows
Support for minidumps - In addition to exploring core dumps, now you can also open and analyze windows minidumps right in the IDE.Run to Cursor as mouse gestures - The Run to Cursor action is now available by clicking on a line number while debugging.Debugging with Run to Cursor as mouse gesture.Right-click a variable and select the appropriate or preferred option under View as. View int as binary, decimal, or hex - You can now choose whether to display int variables in the debugger views as binary, decimal, or hex.
#Goland themes code
Switch between them, quickly navigate to standard Go libraries, and get more information about how your code is being executed.
Goroutines instead of threads - The debugger output now displays goroutines instead of threads. The brand new Nilness Analyzer is a set of code inspections designed to instantly detect whether variables might have nil or not nil values in a variety of cases, and alerts you about potential errors and problems. When renaming such methods, GoLand will offer to rename their implementations as well. More capable Rename - The Rename refactoring also helps rename methods declared in interfaces. To invoke it, call up Refactor This, press Ctrl+Alt+Shift+T on Windows/Linux or ^T on macOS and choose Extract Interface in the pop-up menu. Extract Interface - The Extract Interface refactoring helps you quickly create a new interface based on the selected type. It lets you step into arbitrary calls in an expression, automatically stepping over the methods that you are not interested in. Smart Step Into in action - Debugging a chain of calls and nested method calls is easier with the new debugger action, Smart Step Into. You can start profiling your application right from the IDE, and then review the analysis results in a dedicated tool window (View | Tool Windows | Profiler). Using Memory profiler in GoLand - GoLand has expanded its tooling support by integrating Memory, CPU, Mutex, and Block profilers.