This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8029 from adobe/randy/replace-in
Add Replace in... to context menus
- Loading branch information
Showing
9 changed files
with
127 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/bar.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
bar.txt file | ||
|
||
This file should *not* show up in certain searches |
13 changes: 13 additions & 0 deletions
13
test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/css/foo.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* bar.css */ | ||
body { | ||
margin: 0; | ||
} | ||
h1, barter { | ||
padding: 2px auto; | ||
} | ||
ul.bar { | ||
list-style: none; | ||
} | ||
.bar { | ||
font-size: large; | ||
} |
22 changes: 22 additions & 0 deletions
22
test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/foo.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<title>bar</title> | ||
<link rel="stylesheet" href="css/bar.css"> | ||
<script src="bar.js"></script> | ||
</head> | ||
|
||
<body> | ||
|
||
<h1>bar</h1> | ||
<p>Intro to bar</p> | ||
<ul class="bar"> | ||
<li>bar</li> | ||
<li>bar</li> | ||
<li>baz</li> | ||
</ul> | ||
<p class="bar">It's all about the bar</p> | ||
|
||
</body> | ||
</html> |
13 changes: 13 additions & 0 deletions
13
test/spec/FindReplace-known-goods/simple-case-insensitive-only-foo.css/foo.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* Test comment */ | ||
define(function (require, exports, module) { | ||
var bar = require("modules/bar"), | ||
Bar = require("modules/Bar"), | ||
Baz = require("modules/Baz"); | ||
|
||
function callbar() { | ||
|
||
bar(); | ||
|
||
} | ||
|
||
} |