George Mamaladze

Results 10 comments of George Mamaladze

No but you can get a name of a process with active window somewhere else. e.G. ``` CSharp [DllImport("user32.dll")] public static extern IntPtr GetWindowThreadProcessId(IntPtr hWnd, out uint ProcessId); [DllImport("user32.dll")] private...

Are you using global or application hooks? Are some other applications e.g. games or Microsoft office products having focus? Sometimes they swallow keys or key combinations.

I remember we have investigated that issue before. The result was that a windows handle is required to install hooks. We could do further investigation and document results on wiki...

;) You are right. There are 0 samples. This functionality is still in development. I will try to put some howto code together. Until than you have two options 1....

To detect inactivity you just create a timer and reset it whenever a mouse event arrives. If the timer ticks the user was inactive for given time interval. Because detecting...

Thanks for your hint. Are you bale to prepare a fix and pull request it? I will test and publish it with the next version.

My intuition tells me that caret position is the editor internal knowledge. I am pretty sure it will be impossible to get caret position form system in general case.have you...

You are right. It is not implementeded yet. Updating the value should be easy. During deletion following conditions must considered. 1. Key may not be there in trie. Delete operation...

My guess is that it fails to load data. How do you run it?

Ok. I see. So let me check again. You get this error also when you open this link [example](https://cdn.rawgit.com/gmamaladze/d3-dot-graph/cf08847e/example/index.html) right? If so I need to check for compatibility issues.