Entrian Solutions
 

Source Search 1.4.11: It’s in the Gallery

Thursday, May 9th, 2013 by Richie Hindle

I’m happy to announce Entrian Source Search 1.4.11, and the fact that Source Search is now published in the Visual Studio Gallery.  If any of the Entrian faithful feel the need to enter a glowing review, I won’t stand in your way. :-)

You can find the Source Search page here. (And while you’re there, don’t forget to check out Entrian Attach, our shiny new product!)

Source Search 1.4.11 also brings a cool new feature and a couple of bugfixes:

  • You can now delete results from the results list using the Delete key (thanks for the suggestion, Steve!) If some of the results aren’t relevant, just delete them – they only disappear from the results list, without affecting your filters or your index. In the results list:
    • Delete removes the highlighted result from the list.
    • Shift+Delete removes all the results from the highlighted results’s file.
    • Shift+Ctrl+Delete removes all the results from the highlighted results’s folder.
  • Fixed a crash when a wildcard search with multiple tokens, eg. render*( finds no matches. Thanks, Luke and Marc.
  • Fixed a bogus error message when you try to show a result but you’ve modified the source code such that the result is now off the end of the file. Thanks, Alexandre.

New product: Entrian Attach: Automatically attach the debugger to processes as they start

Friday, April 19th, 2013 by Richie Hindle

ScreenshotI’m excited to announce Entrian’s new product: Entrian Attach!

Entrian Attach automatically attaches the Visual Studio debugger  to processes the moment they start, however they’re started.

Use it to debug services, web servers, code in DllMain, unit tests, setup custom actions, whatever you like.  It works for both native and managed code.

The debugger attaches as the process is created, not on a polling timer, so you get control right from the very first instruction.

You can use it to debug into child processes as well, and control whether to attach only to immediate children or to grandchild processes.

Entrian Attach knows about web servers, and you can configure it to attach to IIS or IIS Express only for certain web sites or application pools.

It supports conditional attachment for any process, according to the process’s user and/or command line.

And finally it has an “Attach Now” command to attach directly to interesting running processes, to save you digging around in Visual Studio’s Attach to Process dialog.

And finally finally, it comes with a built-in five-minute tutorial to walk you through all the features.

Download it today and give it a spin!  The Beta is free but time-limited.  The final version will cost $29 per developer.

 

Entrian Source Search 1.4.10: Search by modification time, and more

Wednesday, February 6th, 2013 by Richie Hindle

I’m pleased to announce Entrian Source Search 1.4.10, including these features and fixes:

  • You can now filter on the age of files, for instance to pick up only files modified within the past two hours: age:2h. The units are m for minutes, h for hours, and d for days. You can combine the units to say things like age:3d12h.  Thanks, Pros and others.
  • New command Shift+Alt+F opens the Search box with a file: filter in place, ready to use autocomplete or wildcards to find files by name. That’s a really quick way to open any file in your source tree.
  • Added Vim-familiar keys for navigating history (Ctrl+H, Ctrl+L) and autocomplete (Ctrl+J and Ctrl+K) from within the Search box.  Thanks, Reva.
  • Trying to query for words that are within five billion tokens of each other via the query loose5000000000:”some words” no longer crashes (but kudos for trying, the anonymous user whose crash report revealed that bug!)
  • Fixed a recently-introduced bug whereby saving a file could cause Source Search to scan all the files in that directory, rather than just re-indexing that one file.
  • Fixed a conflict with Red Gate’s “.NET Demon” which could make Visual Studio hang on loading a solution.  Thanks, James.
  • Pathnames between 255 and 260 characters long no longer cause a crash.  Thanks, Alex.
  • The ‘Indexing’ label now only says ‘Indexing’ when it’s actually found something new or changed to   index.  When it’s just scanning for changes, it says ‘Scanning’.  Thanks, Dan.
  • Added a ‘Report a bug / Suggest a feature’ command to the ‘More…’ menu.

Existing users should note that upgrading to 1.4.10 will rescan all your files, in order to pick up the modification times for age filtering.  Until that process is complete, an age filter will return partial results with a warning.  Everything else will work as normal.

 

Entrian Source Search 1.4.9: Fuzzy search and other new features

Monday, January 21st, 2013 by Richie Hindle
  • Fuzzy search: you can check the new ‘Fuzzy’ button to match:
    - variations: Archive matches CArchive and Archival
    - international spellings: Color matches Colour
    - spelling mistakes: Definitely matches Definately
    (For a large solution, fuzzy searches do go a bit slower than normal searches – they take a couple of seconds rather than being mostly instant.)
  • You can now specify a filter with no search term, eg. file:*terrain* dir:renderer, to get a list of the matching files. Thanks, Reva.
  • There’s now a persistent toggle for ‘loose’ phrases on the toolbar, to save you typing loose: all the time. Thanks, Rory.
  • You can now use the keyboard to toggle the options from the search box: Alt+C for Case sensitivity, Alt+L for Loose phrases, and Alt+F for Fuzzy search. Thanks, Rory.
  • Your selections for Case sensitivity, Loose phrases, and Fuzzy search are now remembered between sessions.
  • Since phrases can now include wildcards, hitting Alt+= with char* selected now escapes the asterisk: char\*. Thanks, Ryan.
  • The shortcut keys for moving through your search history (Ctrl+[ and Ctrl+] in the Search box) no longer conflict with Resharper.
  • The ‘Hint’ dropdown and the tooltip for the Search box now include examples for Loose phrases. Thanks, Darker.

As usual there’s a 30-individual-day trial for new users, and the upgrade is free for existing users.

You can download 1.4.9 from the Download page.

 

Entrian Source Search 1.4.8: Loose search, wildcards in quoted phrases

Tuesday, January 15th, 2013 by Richie Hindle
  • New feature: Loose search, which searches for matches near to each other rather than for exact phrases:
    Screenshot
    The default behaviour for loose:”some phrase” is to allow up to ten tokens between the matches, but you can tune that: loose100:”some phrase” allows 100 tokens between the matches.  The terms don’t have to appear on the same line for matches to be found, nor do they need to appear in the order you give them.  Thanks, Rory and Darker.
  • You can now use wildcards in quoted phrases:

    And of course you can combine these two features to do a loose search for wildcards.
  • Breaking change: To escape an asterisk, eg. to search for char*, putting it in quotes no longer works (because wildcards now work in quoted phrases).  You need to escape it with a backslash: char\* or quote it and add a space: “char *” (which will still find char*).
  • The “Partial results” warning, which has always appeared during the initial build of an index, now also appears when you add a new root directory.  Thanks, Jason.
  • Fixed a very rare (like, once ever) shutdown crash (AccessViolationException).
  • Adding a root directory for which you don’t have read permission no longer crashes.  Thanks, Jean-François.
  • The “Licensed to” text no longer overlaps the “Hit” label when your window is very narrow.
  • Source Search now works on PCs with FIPS Compliance enabled.

 

Entrian Source Search 1.4.7: More responsive indexing, sundry bugfixes

Sunday, December 9th, 2012 by Richie Hindle
I’ve just released Entrian Source Search 1.4.7, with the following fixes and features:
  • Newly-modified files are now pushed to the front of the indexing queue, so they get re-indexed more quickly (thanks, Flavius).
  • When you follow a hit to a saved file that has been changed on the disk but not yet re-indexed, that file is automatically pushed to the front of the index queue (thanks, Jason).
  • Renaming a file by only changing the case of its name no longer causes it to be permanently indexed twice (thanks, Darker).
  • Files that are somehow in your index but not under one of your roots are now purged from the index (thanks, Carl).
  • Licence names with non-ASCII characters now display properly (apologies to Torbjörn and those in Montréal).
  • The results count (“34 hits in 7 files”) would sometimes not update until you moved your mouse over it (thanks, Darker).
  • Hitting Alt+= on a preprocessor directive like #include now works.
  • Fixed a crash when you hit an alphanumeric key with the keyboard focus in the results list and the last hit highlighted.
  • Fixed an intermittent crash (ClosedChannelException) when searching while a large file was being indexed in the background.

As always, there’s a 30-individual-day trial for new users, and the upgrade is free for existing users.

You can download this latest release from the Download page.

Entrian Source Search 1.4.4 – Visual Studio 2012 Dark Theme, more powerful Inclusion/Exclusion

Saturday, September 29th, 2012 by Richie Hindle

I’m pleased to announce Entrian Source Search 1.4.4:

  • Support for the Visual Studio 2012 Dark Theme:
    Entrian Source Search in the VS2012 Dark Theme
  • Inclusions: you can now specify which files to include in an index.  Under normal circumstances Source Search indexes all file types, excluding those you tell it to, but you can now give it a list of file types to include.  Thanks, Anton and Darker.
  • Per-solution control over inclusions and exclusions: if you normally include all files, but for a particular solution you only want to include *.vb (and not *.Designer.vb, if you like) then you can specify all that in the index properties.  Thanks, Darker.
  • Instant update of new exclusions: when you add a new exclusion pattern, matching files are removed from the index immediately.  Previously you might have had to wait a while for the index to catch up.   Thanks, Flavius.
  • You no longer get a bogus Visual Studio error message when jumping to a search hit in the SQL editor.  Thanks, Antonio.

You can download this latest release from the Download page.

 

Source Search 1.4.2: Bugfix

Tuesday, September 11th, 2012 by Richie Hindle

Hot on the heels of Entrian Source Search 1.4.1 comes a bugfix release:

  • Fixed an embarrassing race condition in the auto-complete code that could lead to a crash (thanks, Joseph).

Please upgrade from the Download page.