About 2,930,000 results
Open links in new tab
  1. How to shift a block of code left/right by one space in VSCode?

    Dec 20, 2017 · In VSCode, I can use alt-up and alt-down to move a line or block up or down, but I can't find a command to increase or decrease indent by one space. I can indent/outdent by multiples of …

  2. Disable double-tap "zoom" option in browser on touch devices

    May 16, 2012 · I want to disable the double-tap zoom functionality on specified elements in the browser (on touch devices), without disabling all the zoom functionality. For example: One element can be …

  3. How to tab (back, forward) a block of code in Vim?

    Sep 10, 2009 · To move a block of code, select it with [V]isual line mode and then press "d". This is the "Cut" operation. Then move your cursor to the place you want it to go, and press "p". This is the …

  4. Flutter: Ignore touch events on a Widget - Stack Overflow

    Oct 17, 2019 · This case is pretty common when we started trying to implement something like toggling a selection on a widget to delete or something like for example. Example Senario : Holding on a …

  5. Is there a keyboard shortcut to "untab" (move a block of code to the ...

    Oct 8, 2022 · It's so easy to select a block of code and tab out, but how about the reverse? Currently, I just search and replace for white space at the beginning of the line. Is there anything faster?

  6. loading - Disable user interaction while activity indicator is running ...

    Sep 16, 2022 · I want to disable user interaction with the page while activity indicator is running for my app which I'm building in .net MAUI. I tried creating a transparent , full screen view to overlap with th...

  7. How do you highlight codeblock with tiptap? - Stack Overflow

    Nov 29, 2023 · 0 Important: The @tiptap/extension-code-block-lowlight extension is for code blocks only. To highlight code within a line, you'll need a different extension. For inline code highlighting, use:

  8. syntax - Tab space in Markdown - Stack Overflow

    Use non-breaking spaces In Markdown, as any markup languages, the tab space collapses to a single space. Also, several consecutive horizontal whitespace (e.g. spaces, tabs) collapse to a single space …

  9. tap() vs subscribe() to set a class property - Stack Overflow

    Mar 9, 2018 · The tap operator is mostly there for debugging, but it can be used to run side effects. In general, favor the subscribe block for running side effects, use tap for debugging, but be aware that …

  10. Disabling the context menu on long taps on Android

    Jun 12, 2012 · I would like to disable the context menu that appears after a long tap (touch and hold) on images in my web application. I've seen posts with different ideas how to do it, but none of them …