Author |
Message |
Topic: Strange VisualStudio performance with C++ projects |
Zone
Replies: 3
Views: 14799
|
Forum: Visual D Posted: Sat May 21, 2011 7:44 pm Subject: Strange VisualStudio performance with C++ projects |
Ok this looks like a strange interaction with a few 'unrelated' systems that in the end is really a configuration problem.
When the plugin is installed AND
I am working in a C++ sln/vcxproj AND
m ... |
Topic: Strange VisualStudio performance with C++ projects |
Zone
Replies: 3
Views: 14799
|
Forum: Visual D Posted: Sat May 21, 2011 2:25 pm Subject: Strange VisualStudio performance with C++ projects |
Its a dedicated C++ sln/vcxproj, which is why I find it a bit strange. I'll try procdump -h and see what kind of stack I get . . . |
Topic: Strange VisualStudio performance with C++ projects |
Zone
Replies: 3
Views: 14799
|
Forum: Visual D Posted: Fri May 20, 2011 10:56 pm Subject: Strange VisualStudio performance with C++ projects |
The latest point release has been pretty solid for for D programming, but now I'm noticing when the plug-in is installed I get periodic freezes in the IDE when working on C++ projects. They are fairl ... |
Topic: new release ? |
Zone
Replies: 11
Views: 26912
|
Forum: Visual D Posted: Sun Apr 17, 2011 11:50 am Subject: new release ? |
There is a good chance the plugin crashes on me when deleting a line
import myproject.myfile;
The use case is : I am refactoring my modules to be merged and removing the import statements from t ... |
Topic: new release ? |
Zone
Replies: 11
Views: 26912
|
Forum: Visual D Posted: Sun Apr 17, 2011 11:37 am Subject: new release ? |
Much more stable for me I abuse the column mode in 2010 quite heavily as its pretty nice (and more flexible than in previous versions).
I swear I built the browse info once but it might have cr ... |
Topic: new release ? |
Zone
Replies: 11
Views: 26912
|
Forum: Visual D Posted: Sun Apr 17, 2011 4:10 am Subject: new release ? |
I am playing with the new rc2 build and have found its pretty easy to crash it when doing the alt-drag to column select code, especially when the drag destination is off the screen (which is supposed ... |
Topic: WM_MOUSEHWHEEL in win32/winuser.d |
Zone
Replies: 1
Views: 14314
|
Forum: Bindings Posted: Thu Apr 14, 2011 2:16 am Subject: WM_MOUSEHWHEEL in win32/winuser.d |
This works, though there is probably a better way to deal with the WM_XBUTTON* defines.
static if (_WIN32_WINNT >= 0x600) {
const WM_XBUTTONDOWN=523;
const WM_XBUTTONUP=524;
... |
Topic: WM_MOUSEHWHEEL in win32/winuser.d |
Zone
Replies: 1
Views: 14314
|
Forum: Bindings Posted: Thu Apr 14, 2011 12:46 am Subject: WM_MOUSEHWHEEL in win32/winuser.d |
This define is missing, it needs to look something like this:
static if(_WIN32_WINNT >= 0x0600)
{
const WM_MOUSEHWHEEL=526; // 0x020E
}
WM_MOUSELAST needs to be updat ... |
Topic: sorting of items in folders |
Zone
Replies: 2
Views: 12213
|
Forum: Visual D Posted: Sun Apr 10, 2011 8:48 pm Subject: sorting of items in folders |
I'm not exactly surprised the dmd2 toolchain is a bottleneck and affecting the design, its the whole reason I was happy to see Visual D in the first place
So far its the most visible complaint, ... |
Topic: sorting of items in folders |
Zone
Replies: 2
Views: 12213
|
Forum: Visual D Posted: Sat Apr 09, 2011 6:09 pm Subject: sorting of items in folders |
The files contained in the folder trees seem to be manually sorted, an automatic case-insensitive alphabetic sort would be preferable, which is consistent with visual studio's behavior for C++ code et ... |
|