Dmitry Gutov
Dmitry Gutov
`PortablePoller#percent_cpu` uses the `ps` command, which has this note in the man page: > CPU usage is currently expressed as the percentage of time spent > running during the entire...
The meaning of the variable has changed in the latest rinari, it should be a list of major mode symbols. And I don't think there's a need to change the...
Example (failing spec): ``` rb it "permits normal handling of errors" do caught = nil EM.synchrony do begin EM::Synchrony::FiberIterator.new(0..1, 2).each do |num| raise "#{num} here" end rescue => e caught...
`mysql2` does that by default since Rails 4.0: https://github.com/rails/rails/pull/6069
We have `emacs-git-gutter` for comparison, which is a younger project, and yet about twice as popular (according to GitHub's star count). If there are easy ways to improve the situation...
Being able to edit the matches from the search buffer is useful. Is this a planned feature? If the recommended solution is to use [wgrep-ack](https://github.com/mhayashi1120/Emacs-wgrep), it mostly seems to work,...
With the current master: ``` TRACE: could not complete at point: java.lang.ClassCastException: org.eclipse.jdt.core.dom.WildcardType cannot be cast to org.eclipse.jdt.core.dom.SimpleType at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.getTypeArguments(JavaCompleteCompilationUnit.java:161) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.init(JavaCompleteCompilationUnit.java:291) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.initStatement(JavaCompleteCompilationUnit.java:260) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.init(JavaCompleteCompilationUnit.java:224) at me.tillmanns.javacomplete.JavaCompleteCompilationUnit.(JavaCompleteCompilationUnit.java:78) at me.tillmanns.javacomplete.Complete.complete(Complete.java:95)...
With example ([context](https://github.com/jostillmanns/javacomplete/blob/master/src/main/java/me/tillmanns/javacomplete/ImportAdder.java#L112-L114)): ``` ArrayList fullyqualified = new ArrayList(); for(String s:f|) { sb.append(s+"\n"); } ``` there's no completion after `f`. The backtrace from the server output looks like this: ```...
Quoting the comment [here](https://github.com/bbatsov/projectile/commit/e3007ae0324fb6679a6b3dac5c63191ce907115e#r31366629): In the projects I'm working on, we have both files checked into Git but ones that I want to see ignored for navigation (e.g. VCR cassettes),...
- It's ugly. - We pretty much can't avoid duplicates doing things the current way, since we have differentiate between `don` and `Don` up until the prefix is replaced. -...