all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mike Treseler <mike_treseler@comcast.net>
To: help-gnu-emacs@gnu.org
Subject: Re: How to disable "_i" insertion on signals in emacs VHDL mode
Date: Wed, 31 Jan 2007 19:13:31 -0800	[thread overview]
Message-ID: <52d46rF1mntj1U1@mid.individual.net> (raw)
In-Reply-To: <1170273536.940804.311030@k78g2000cwa.googlegroups.com>

chris.plachta@gmail.com wrote:

> Does anyone know how to disable the automatic insertion of "_i" on
> signals that are connect to a instance port map?
> 


If I say:
customize-apropos port

I see my settings:

Vhdl Actual Port Name: Hide
>From regexp: .*
To string  : \&_s
   State: this option has been set and saved.
Specifies how actual port names are obtained from formal port names. Hide
In a component instantiation, an actual port name can be obtained by
modifying the formal port name (e.g. attaching or stripping off a
substring).

FROM REGEXP is a regular expression matching the original name:
  ".*"       matches the entire string
  "\(...\)"  matches a substring
TO STRING specifies the string to be inserted as new name:
  "\&"  means substitute entire matched text
  "\N"  means substitute what matched the Nth "\(...\)"
Examples:
  ".*"           "\&"    inserts original string
  ".*"           "\&_i"  attaches "_i" to original string
  "\(.*\)_[io]$" "\1"    strips off "_i" or "_o" from original string
  ".*"           "foo"   inserts constant string "foo"
  ".*"           ""      inserts empty string

      parent reply	other threads:[~2007-02-01  3:13 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-31 19:58 How to disable "_i" insertion on signals in emacs VHDL mode chris.plachta
2007-01-31 21:13 ` Nicolas Matringe
2007-02-01  3:13 ` Mike Treseler [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52d46rF1mntj1U1@mid.individual.net \
    --to=mike_treseler@comcast.net \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.