Recent Posts

Pages: 1 ... 8 9 [10]
91
SlickEdit® / Re: Java breakpoint hit doesn't move editor to breakpoint line
« Last post by rjpontefract on November 20, 2023, 06:20:36 PM »
Thanks Clark, that works fine and makes life a bit easier.
92
SlickEdit User Macros / _RelativeToWorkingDir() function
« Last post by Dennis on November 20, 2023, 04:42:52 PM »
Just a little utility function to compute a path relative to the project working directory, which I needed in an environment where I was keeping the project files well outside of the source directory.

Used in my Project tool setup as:  %(macro _RelativeToWorkingDir %f)

Not exactly rocket science ... maybe more like wheelbarrow science.

Code: [Select]
#include "slick.sh"
#import "project.e"

_str _RelativeToWorkingDir(_str Filename,_str ProjectName=_project_name)
{
   if (ProjectName=='') {
      return('');
   }
   project_handle := _ProjectHandle(ProjectName);
   project_dir := _strip_filename(ProjectName, 'N');
   working_dir := absolute(_ProjectGet_WorkingDir(project_handle), project_dir);
   return relative(Filename, working_dir);
}
93
SlickEdit® / Re: SlickEdit closes suddenly (28.0.0.6)
« Last post by Clark on November 20, 2023, 03:30:07 PM »
I got the dumps today. Thanks.

There might be a code mismatch. Most of the stacks aren't getting displayed.

Try running this installer:

This is a 28.0.0.6 win64 installer with a fix for hexadecimal display in the debugger and some hot fixes rolled in.

https://drive.google.com/drive/folders/1gjR08T_K0j6IQpHo0wRkFR_tV-3MQ8mO?usp=sharing

When you get a crash dump, post here because I constantly check for new posts. I don't seem to get notified when I get a PM and I forget to check for them.
94
SlickEdit® / Re: Java breakpoint hit doesn't move editor to breakpoint line
« Last post by Clark on November 20, 2023, 02:01:30 PM »
Load the attached macro to fix this. Macro>Load Module...

This will be added to the hot fixes
95
SlickEdit® / Re: SlickEdit closes suddenly (28.0.0.6)
« Last post by vandermyer on November 20, 2023, 11:59:57 AM »
Hi Clark,

I have (hopefully) PM'ed you with crash dumps. Could you confirm that you can see these dumps? Thanks.
96
SlickEdit® / Re: Java breakpoint hit doesn't move editor to breakpoint line
« Last post by Clark on November 19, 2023, 09:33:22 PM »
Here's what I'm seeing. When you start the debugger and the first break point is hit, SlickEdit doesn't scroll the file into view for the case you describe. I'm not seeing this problem for breakpoints after the first break point.

Look into this. As a work around, you can click the right arrow debugger toolbar button (->)
97
SlickEdit® / Java breakpoint hit doesn't move editor to breakpoint line
« Last post by rjpontefract on November 19, 2023, 08:25:47 PM »
Using SE28 on Windows 10.

I have breakpoints set in a Java source file.  When the breakpoint is hit, I expected the source window to move to show the line with the breakpoint that was hit.  If I am viewing a different source buffer, then it works - the buffer is switched to the correct source file and the cursor is move to the line with the breakpoint.  However, if the buffer with the breakpoint line is already active and the cursor is elsewhere in that file, when the breakpoint is hit, the buffer content flashes very briefly and the cursor is still on the line that it was on before instead of moving to the breakpoint line.

Is there an option somewhere that I've changed or is this a bug and SE should always move to the line with the breakpoint?
98
SlickEdit® / Re: Slickedit very slow on 10M file
« Last post by Clark on November 18, 2023, 03:18:03 PM »
Can you provide a sample file we can use to reproduce this?
99
SlickEdit® / Re: Slickedit very slow on 10M file
« Last post by astromme on November 18, 2023, 02:55:18 AM »
No.  They're log files that happen to have json in them.  The json blobs are the very long parts.
100
SlickEdit® / Re: Slickedit very slow on 10M file
« Last post by Dan on November 18, 2023, 02:44:19 AM »
What kind of files are they? Are they in version control?
Pages: 1 ... 8 9 [10]