<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<meta content="text/html; charset=UTF-8">
<style type="text/css" style="">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
<div dir="ltr">
<div id="x_divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<p>Hi Eliot,</p>
<p><br>
</p>
<p>doesn't this increase the coupling between editing and projects management even more?</p>
<p><br>
</p>
<p>Best,</p>
<p>Christoph</p>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="x_divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" color="#000000" style="font-size:11pt"><b>Von:</b> Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org><br>
<b>Gesendet:</b> Donnerstag, 11. November 2021 18:11:49<br>
<b>An:</b> squeak-dev@lists.squeakfoundation.org; packages@lists.squeakfoundation.org<br>
<b>Betreff:</b> [squeak-dev] The Trunk: Morphic-eem.1790.mcz</font>
<div> </div>
</div>
</div>
<font size="2"><span style="font-size:10pt;">
<div class="PlainText">Eliot Miranda uploaded a new version of Morphic to project The Trunk:<br>
<a href="http://source.squeak.org/trunk/Morphic-eem.1790.mcz">http://source.squeak.org/trunk/Morphic-eem.1790.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Morphic-eem.1790<br>
Author: eem<br>
Time: 11 November 2021, 9:11:46.040429 am<br>
UUID: fcf3f31e-f485-42d4-8863-29f2e3c2afed<br>
Ancestors: Morphic-eem.1789<br>
<br>
Implement "make project link (P)" for the Morphic help editor.<br>
<br>
=============== Diff against Morphic-eem.1789 ===============<br>
<br>
Item was added:<br>
+ ----- Method: PluggableTextMorph>>makeProjectLink (in category 'menu commands') -----<br>
+ makeProjectLink<br>
+        self handleEdit: [textMorph editor makeProjectLink]!<br>
<br>
Item was added:<br>
+ ----- Method: TextEditor>>makeProjectLink (in category 'menu commands') -----<br>
+ makeProjectLink<br>
+        | attribute thisSel |<br>
+        <br>
+        thisSel := self selection.<br>
+ <br>
+        attribute := TextSqkProjectLink new. <br>
+        thisSel := attribute analyze: self selection asString.<br>
+ <br>
+        thisSel ifNil: [^ true].<br>
+        self replaceSelectionWith: (thisSel asText addAttribute: attribute).<br>
+        ^ true!<br>
<br>
<br>
</div>
</span></font>
</body>
</html>