squm
squm
How to make `--vimgrep` return same results as `--novimgrep` does, but keep the vim format
MacVim Menu which pops-up from the Dock had “New Window”, line separator, and a list of currently edited files. Now it shows a list of recent files above the “New...
After trying _Toggle pending status for media files_ from official docs: [https://developer.android.com/training/data-storage/shared/media#toggle-pending-status](https://developer.android.com/training/data-storage/shared/media#toggle-pending-status) I get exception: `java.lang.IllegalArgumentException: Movement of content://media/external_primary/video/media which isn't part of well-defined collection not allowed` `at android.content.ContentProviderProxy.update(ContentProviderNative.java:578)`
--hidden
--hidden is ignored if hidden directory depth is not 1 in other words, --hidden makes search hidden directories in current directory only
https://github.com/mileszs/ack.vim/blob/36e40f9ec91bdbf6f1adf408522a73a6925c3042/autoload/ack.vim#L117
Hello, I noticed using `NavigationUI.onNavDestinationSelected` turns the Back button into Home button, keeps the Back button icon ``` @Override public boolean onOptionsItemSelected(MenuItem item) { NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment); return...
https://github.com/android/architecture-components-samples/blob/1816deaa2f2f087cc16c5cd4199c7600395b9905/BasicSample/app/src/main/java/com/example/android/persistence/db/AppDatabase.java#L44 Hello, I am looking at the [“Android Room with a View - Java”](https://github.com/googlecodelabs/android-room-with-a-view/blob/e3a20d932fef6f567c190f6047f2b62bb8860eb9/app/src/main/java/com/example/android/roomwordssample/WordRoomDatabase.java#L41) and they declare database instance as volatile ``` // marking the instance as volatile to ensure...
https://github.com/skywind3000/gutentags_plus/blob/31cabd10596244f0f2d7dc8941084f5709ce28fb/doc/gutentags_plus.txt#L70
` easytags.vim 3.11: Plug-in not loaded because Exuberant Ctags 5.5 or newer is required while you have version 0.0.0 installed!` ``` ctags --version Universal Ctags 0.0.0(4aed4f0), Copyright (C) 2015 Universal...
Hello, I'm trying to unwrap the chain of calls from `MainActivity` `WordRepository` `WordViewModel`. Activity is initializing ViewModel, calls [`getAllWords`](https://github.com/googlecodelabs/android-room-with-a-view/blob/e3a20d932fef6f567c190f6047f2b62bb8860eb9/app/src/main/java/com/example/android/roomwordssample/MainActivity.java#L59) which is defined to return [`mAllWords`](https://github.com/googlecodelabs/android-room-with-a-view/blob/e3a20d932fef6f567c190f6047f2b62bb8860eb9/app/src/main/java/com/example/android/roomwordssample/WordViewModel.java#L42) which is set in the...