To clear the last used search pattern and also can set command as :C by :command C let @/=""
Link
To jump to a matching opening or closing parenthesis, square bracket or a curly brace: ([{}])
| class Program | |
| { | |
| static int count = 100000; | |
| static int runningCount = 0; | |
| static void Main(string[] args) | |
| { | |
| var dict = new Dictionary<Guid, string>(); | |
| var mre = new ManualResetEvent(false); |
| private const int PORT_NUMBER = 1852; // the port number to used for SpecFlow testing | |
| [BeforeTestRun()] | |
| public static void StartWebServer() | |
| { | |
| if (ExistsPort()) | |
| return; | |
| // settings | |
| string LocalHostUrl = string.Format("http://localhost:{0}", PORT_NUMBER); |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <configSections> | |
| <section name="specFlow" | |
| type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/> | |
| </configSections> | |
| <specFlow> | |
| <unitTestProvider name="xUnit" /> | |
| </specFlow> |
| <!DOCTYPE html><html lang="en" xmlns:fb="http://www.facebook.com/2008/fbml"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <link rel="icon" href="{Favicon}" type="image/x-png"/> | |
| <title>{PageTitle}</title> | |
| <link href="http://island.heroku.com/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> | |
| <style type="text/css"> | |
| body { | |
| font-size: 100%; | |
| } |
| [Oo]bj/ | |
| [Bb]in/ | |
| *.suo | |
| *.user | |
| *.docstates | |
| packages/ | |
| App_Data |
| require "autotest/fsevent" | |
| require "test_notifier" | |
| # monkey patching to use testdrb | |
| # src: https://github.com/seattlerb/zentest/blob/master/lib/autotest.rb#L604 | |
| class Autotest::Rails | |
| def testdrb | |
| ENV['TESTDRB_PATH'] || 'testdrb' | |
| end |
To clear the last used search pattern and also can set command as :C by :command C let @/=""
Link
To jump to a matching opening or closing parenthesis, square bracket or a curly brace: ([{}])
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace BeatLadyGaga |
| public class JsHandler : IHttpHandler | |
| { | |
| public bool IsReusable | |
| { | |
| get { return true; } | |
| } | |
| public void ProcessRequest(HttpContext context) | |
| { | |
| var req = context.Request; |